123456789101112131415161718192021 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net8.0-windows</TargetFramework>
- <Nullable>enable</Nullable>
- <ImplicitUsings>enable</ImplicitUsings>
- <UseWPF>true</UseWPF>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="CommunityToolkit.Mvvm" Version="8.3.2" />
- <PackageReference Include="Jamesnet.Wpf" Version="1.0.0.110" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\FakeLibrary\FakeLibrary.csproj" />
- <ProjectReference Include="..\Waaagh\Waaagh.csproj" />
- </ItemGroup>
- </Project>
|