-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathDragonECS.csproj
28 lines (24 loc) · 1.07 KB
/
DragonECS.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>netstandard2.1</TargetFramework>
<LangVersion>7.3</LangVersion>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<InvariantGlobalization>true</InvariantGlobalization>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<RootNamespace>DCFApixels.DragonECS</RootNamespace>
<Title>DragonECS</Title>
<Version>0.9.9</Version>
<Authors>DCFApixels</Authors>
<Description>ECS Framework for Game Engines with C# and .Net Platform</Description>
<Copyright>DCFApixels</Copyright>
<RepositoryUrl>https://github.com/DCFApixels/DragonECS</RepositoryUrl>
<PackageLicenseUrl>https://github.com/DCFApixels/DragonECS/blob/main/LICENSE.meta</PackageLicenseUrl>
<PackageTags>ecs; gamedev; unity; dragonecs</PackageTags>
</PropertyGroup>
<ItemGroup>
<None Remove="**/*.meta" />
<None Remove="package.json" />
<None Remove="DragonECS.asmdef" />
</ItemGroup>
</Project>