-
Notifications
You must be signed in to change notification settings - Fork 13
/
Directory.Build.props
21 lines (20 loc) · 1 KB
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<VersionPrefix>1.5.0</VersionPrefix>
<LangVersion>latest</LangVersion>
<!-- NuGet Package Information -->
<Description>A library for building server application using loop-action programming model on .NET. This library focuses on building game servers with server-side logic.</Description>
<PackageVersion>$(Version)</PackageVersion>
<Company>Cysharp</Company>
<Authors>Cysharp</Authors>
<Copyright>© Cysharp, Inc.</Copyright>
<PackageTags>GameLoop;Framework</PackageTags>
<PackageProjectUrl>https://github.com/Cysharp/LogicLooper</PackageProjectUrl>
<RepositoryUrl>$(PackageProjectUrl)</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>Icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
</Project>