Created
July 27, 2023 10:19
-
-
Save usausa/80269d08ce4fe7c00bd6de339c274982 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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