mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
30 lines
1.2 KiB
XML
30 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net472</TargetFramework>
|
|
<OutputType>WinExe</OutputType>
|
|
<ApplicationIcon>Resources\Cosmos.ico</ApplicationIcon>
|
|
<IncludeWpfReferences>True</IncludeWpfReferences>
|
|
<AppendTargetFrameworkToOutputPath>False</AppendTargetFrameworkToOutputPath>
|
|
</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>
|