blob: 2146a59186ca3d67fe72b46c6993d9d9d68de0cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<DebugType>embedded</DebugType>
<!-- https://github.com/Microsoft/msbuild/issues/2360 -->
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Build.Tasks.Core" />
<PackageReference Include="System.Text.Json" />
<PackageReference Include="WixToolset.Data" />
</ItemGroup>
</Project>
|