-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCodebreaker.ViewModels.csproj
More file actions
35 lines (30 loc) · 1.27 KB
/
Codebreaker.ViewModels.csproj
File metadata and controls
35 lines (30 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<PackageId>CNInnovation.Codebreaker.ViewModels</PackageId>
<PackageTags>
Codebreaker;CNinnovation;GamesClient;
</PackageTags>
<Description>
This library contains shared view-model types for the Codebreaker app.
See https://github.com/codebreakerapp for more information on the complete solution.
</Description>
<PackageDescription>
This library contains shared view-model types for the Codebreaker app.
See https://github.com/codebreakerapp for more information on the complete solution.
</PackageDescription>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<PackageIcon>codebreaker.jpeg</PackageIcon>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.3.2" />
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.0" />
<PackageReference Include="CNinnovation.Codebreaker.GamesClient" Version="3.6.0-beta.24" />
</ItemGroup>
<ItemGroup>
<None Include="docs/readme.md" Pack="true" PackagePath="\" />
<None Include="Images/codebreaker.jpeg" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>