mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
17 lines
661 B
XML
17 lines
661 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net472</TargetFramework>
|
|
<OutputType>WinExe</OutputType>
|
|
<ApplicationIcon>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="Cosmos.ico" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|