mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
26 lines
828 B
XML
26 lines
828 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net5.0</TargetFrameworks>
|
|
<OutputType>Exe</OutputType>
|
|
<RuntimeIdentifier>win10-x86</RuntimeIdentifier>
|
|
<SignAssembly>False</SignAssembly>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="**\*.xaml.cs" DependentUpon="%(Filename)" />
|
|
<EmbeddedResource Include="**\*.xaml" SubType="Designer" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Avalonia" />
|
|
<PackageReference Include="Avalonia.Desktop" />
|
|
<PackageReference Include="Avalonia.ReactiveUI" />
|
|
<PackageReference Include="ReactiveUI" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Cosmos.TestRunner.Full\Cosmos.TestRunner.Full.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|