mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
20 lines
586 B
XML
20 lines
586 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.0-windows</TargetFramework>
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
<OutputType>WinExe</OutputType>
|
|
<ApplicationIcon>Cosmos.ico</ApplicationIcon>
|
|
<UseWPF>true</UseWPF>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="**\*.xaml.cs" SubType="Designer" DependentUpon="%(Filename)" />
|
|
<Resource Include="Cosmos.ico" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Cosmos.Build.Common" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|