2018-12-18 03:25:48 +03:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
|
|
<ApplicationIcon />
|
|
|
|
<Win32Resource />
|
|
|
|
<LangVersion>7.3</LangVersion>
|
2019-06-13 01:57:18 +03:00
|
|
|
<Platforms>AnyCPU;x86;x64</Platforms>
|
2018-12-18 03:25:48 +03:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
<WarningLevel>1</WarningLevel>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2019-06-13 01:57:18 +03:00
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
|
|
<WarningLevel>1</WarningLevel>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
|
|
|
|
<WarningLevel>1</WarningLevel>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2019-02-16 04:49:01 +03:00
|
|
|
<ItemGroup>
|
|
|
|
<None Remove="Assets\Labels.json" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<Content Include="Assets\Labels.json">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</Content>
|
|
|
|
</ItemGroup>
|
|
|
|
|
2018-12-18 03:25:48 +03:00
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<Reference Include="Windows">
|
|
|
|
<HintPath>$(WINDOWS_WINMD)</HintPath>
|
|
|
|
<IsWinMDFile>true</IsWinMDFile>
|
|
|
|
</Reference>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<Compile Update="Properties\Resources.Designer.cs">
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
|
|
</Compile>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<EmbeddedResource Update="Properties\Resources.resx">
|
|
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
|
|
</EmbeddedResource>
|
|
|
|
</ItemGroup>
|
|
|
|
|
2019-01-04 03:45:43 +03:00
|
|
|
<ItemGroup>
|
|
|
|
<None Update="Labels.json">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
</ItemGroup>
|
|
|
|
|
2018-12-18 03:25:48 +03:00
|
|
|
</Project>
|