25 строки
917 B
XML
25 строки
917 B
XML
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
|
<UseWPF>true</UseWPF>
|
|
<ApplicationIcon>win.ico</ApplicationIcon>
|
|
<Platforms>AnyCPU;x86</Platforms>
|
|
<RuntimeIdentifiers>win-x86</RuntimeIdentifiers>
|
|
<TargetPlatformMinVersion>10.0.17134.0</TargetPlatformMinVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AppInsights.WindowsDesktop" Version="2.10.55" />
|
|
<PackageReference Include="Nerdbank.GitVersioning" Version="3.0.25" PrivateAssets="all" />
|
|
<PackageReference Include="OSVersionHelper" Version="1.0.11" />
|
|
<PackageReference Include="Microsoft.Windows.SDK.Contracts" Version="10.0.17763.1000-preview" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="ApplicationInsights.config" CopyToOutputDirectory="PreserveNewest" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|