mirror of
https://github.com/DCFApixels/DragonECS.git
synced 2025-09-18 01:44:35 +08:00
add csproj and exception for it in gitignore
This commit is contained in:
parent
29f656f394
commit
17cea1ec55
6
.gitignore
vendored
6
.gitignore
vendored
@ -26,6 +26,9 @@
|
||||
# Visual Studio cache directory
|
||||
.vs/
|
||||
|
||||
# Rider settings directory
|
||||
.idea/
|
||||
|
||||
# Gradle cache directory
|
||||
.gradle/
|
||||
|
||||
@ -70,3 +73,6 @@ crashlytics-build.properties
|
||||
# Temporary auto-generated Android Assets
|
||||
/[Aa]ssets/[Ss]treamingAssets/aa.meta
|
||||
/[Aa]ssets/[Ss]treamingAssets/aa/*
|
||||
|
||||
# Don't ignore main csproj file
|
||||
!DragonECS.csproj
|
||||
|
18
DragonECS.csproj
Normal file
18
DragonECS.csproj
Normal file
@ -0,0 +1,18 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard2.1</TargetFramework>
|
||||
<LangVersion>8</LangVersion>
|
||||
<ImplicitUsings>disable</ImplicitUsings>
|
||||
<Nullable>disable</Nullable>
|
||||
<InvariantGlobalization>true</InvariantGlobalization>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Remove="**/*.meta" />
|
||||
<None Remove="package.json" />
|
||||
<None Remove="DragonECS.asmdef" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
Loading…
Reference in New Issue
Block a user