Skip to content

Instantly share code, notes, and snippets.

@usausa
Created July 27, 2023 10:19
Show Gist options
  • Save usausa/80269d08ce4fe7c00bd6de339c274982 to your computer and use it in GitHub Desktop.
Save usausa/80269d08ce4fe7c00bd6de339c274982 to your computer and use it in GitHub Desktop.
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\MyResources.restext">
<StronglyTypedLanguage>C#</StronglyTypedLanguage>
<StronglyTypedFileName>Resources\MyResources.Designer.cs</StronglyTypedFileName>
<StronglyTypedNamespace>$(RootNamespace).Resources</StronglyTypedNamespace>
<StronglyTypedClassName>MyResources</StronglyTypedClassName>
</EmbeddedResource>
<EmbeddedResource Include="Resources\MyResources.ja-jp.restext"/>
</ItemGroup>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment