Cosmos/source/Cosmos.Build.Builder/Cosmos.Build.Builder.csproj
2018-08-19 19:23:51 +01:00

29 lines
1.1 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net471</TargetFramework>
<OutputType>WinExe</OutputType>
<ApplicationIcon>Resources\Cosmos.ico</ApplicationIcon>
<IncludeWpfReferences>True</IncludeWpfReferences>
</PropertyGroup>
<ItemGroup>
<ApplicationDefinition Include="App.xaml" SubType="Designer" Generator="MSBuild:Compile" />
<Page Include="**\*.xaml" Exclude="App.xaml" SubType="Designer" Generator="MSBuild:Compile" />
<Compile Update="**\*.xaml.cs" SubType="Designer" DependentUpon="%(Filename)" />
<Resource Include="Resources\**" />
<UpToDateCheckInput Include="@(ApplicationDefinition)" />
<UpToDateCheckInput Include="@(Page)" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Net.Http" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.Setup.Configuration.Interop" />
<PackageReference Include="NuGet.Common" />
<PackageReference Include="NuGet.Configuration" />
</ItemGroup>
</Project>