-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModernRiftCore.csproj
More file actions
31 lines (26 loc) · 1.34 KB
/
ModernRiftCore.csproj
File metadata and controls
31 lines (26 loc) · 1.34 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageReleaseNotes>Release v0.1.2-alpha</PackageReleaseNotes>
<Version>0.1.2-alpha</Version>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageId>Rift.ModernRift.Core</PackageId>
<Authors>Rift</Authors>
<Company>Rift Development</Company>
<Product>ModernRift Game Engine</Product>
<Description>ModernRift is the lastest branch of RiftEngine. It aims to be modular, intuitive, and quick to use. It can be used for both linear and non-linear text-based game development.</Description>
<Copyright>Copyright (c) 2022 Rift Development</Copyright>
<PackageProjectUrl>https://RiftEngine.GitHub.io</PackageProjectUrl>
<RepositoryUrl>https://github.com/RiftEngine/ModernRift</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>GameEngine;Game;TextBased;TextBasedGame</PackageTags>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageLicenseExpression> GPL-3.0-or-later</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
</ItemGroup>
</Project>