This repository was archived by the owner on Dec 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRift.RiftEngine.Core.csproj
More file actions
41 lines (35 loc) · 1.56 KB
/
Rift.RiftEngine.Core.csproj
File metadata and controls
41 lines (35 loc) · 1.56 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
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!--TO BE CHANGED BETWEEN RELEASES-->
<PackageReleaseNotes>Parameterized Interactions</PackageReleaseNotes>
<Version>0.0.1.2-alpha</Version>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageId>Rift.RiftEngine.Core</PackageId>
<Authors>Rift</Authors>
<Company>Rift Development</Company>
<Product>Rift Engine</Product>
<Description>A text-based game engine used to easily create non-linear and linear text-based games.</Description>
<Copyright>Copyright (C) 2022 Rift Development</Copyright>
<PackageProjectUrl>https://RiftEngine.GitHub.io</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/RiftEngine/Rift</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>GameEngine;Game;TextBased;TextBasedGame</PackageTags>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageLicenseExpression> GPL-3.0-or-later</PackageLicenseExpression>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>