| 1234567891011121314151617181920212223 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0-windows</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- <Platforms>AnyCPU;x64</Platforms>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="CommunityToolkit.Mvvm" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\UICommon\UICommon.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Folder Include="RealtimeData\Status\" />
- </ItemGroup>
- </Project>
|