-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGami.Core.csproj
28 lines (25 loc) · 1.18 KB
/
Gami.Core.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>11</LangVersion>
<Version>0.11.0</Version>
<Title>Gami shared library for plugins and client</Title>
<Authors>Tom Bebbington</Authors>
<Description>A shared library for Gami UI and plugins</Description>
<PackageProjectUrl>https://github.com/TomBebb/Gami</PackageProjectUrl>
<RepositoryUrl>https://github.com/TomBebb/Gami.Core</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>game</PackageTags>
<PackageReleaseNotes></PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Glob" Version="1.1.9"/>
<PackageReference Include="Instances" Version="3.0.0"/>
<PackageReference Include="Octokit" Version="13.0.1"/>
<PackageReference Include="ReactiveUI" Version="20.1.63"/>
<PackageReference Include="ReactiveUI.Fody" Version="19.5.41"/>
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.5"/>
</ItemGroup>
</Project>