mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
31 lines
1.2 KiB
XML
31 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net471</TargetFramework>
|
|
<OutputType>WinExe</OutputType>
|
|
<ApplicationIcon>Resources\Cosmos.ico</ApplicationIcon>
|
|
</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.Xaml" />
|
|
<Reference Include="WindowsBase" />
|
|
<Reference Include="PresentationCore" />
|
|
<Reference Include="PresentationFramework" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.VisualStudio.Setup.Configuration.Interop" Version="1.8.24" />
|
|
<PackageReference Include="NuGet.Common" Version="4.2.0" />
|
|
<PackageReference Include="NuGet.Configuration" Version="4.2.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|