2022-06-06 12:28:36 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
2022-06-06 20:07:04 +00:00
|
|
|
|
<TargetFramework>net6.0-windows10.0.22000.0</TargetFramework>
|
2022-06-06 12:28:36 +00:00
|
|
|
|
<RootNamespace>UI_WinForms</RootNamespace>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2022-06-06 20:07:04 +00:00
|
|
|
|
<LangVersion>default</LangVersion>
|
2022-07-16 20:28:27 +00:00
|
|
|
|
<AssemblyName>I18N Commander</AssemblyName>
|
2022-06-06 12:28:36 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-06-12 14:29:19 +00:00
|
|
|
|
<ProjectReference Include="..\DataModel\DataModel.csproj" />
|
2022-06-06 12:28:36 +00:00
|
|
|
|
<ProjectReference Include="..\Processor\Processor.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="Resources\Icons.Designer.cs">
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DependentUpon>Icons.resx</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Update="Resources\Icons.resx">
|
|
|
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
|
|
|
<LastGenOutput>Icons.Designer.cs</LastGenOutput>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|