Browse Source

add csproj for svelto framework

tags/Rel2b
sebas77 6 years ago
parent
commit
4ea83ddce3
2 changed files with 26 additions and 0 deletions
  1. +3
    -0
      .gitignore
  2. +23
    -0
      Svelto.ECS.csproj

+ 3
- 0
.gitignore View File

@@ -2,3 +2,6 @@
/EntitySystem/note.txt.meta
/*.meta
*.meta
/obj
/bin/Release/netstandard2.0
/bin/Debug/netstandard2.0

+ 23
- 0
Svelto.ECS.csproj View File

@@ -0,0 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.Reflection" Version="4.3.0" />
<PackageReference Include="System.Reflection.Emit" Version="4.3.0" />
<PackageReference Include="System.Reflection.Emit.ILGeneration" Version="4.3.0" />
<PackageReference Include="System.Reflection.Emit.Lightweight" Version="4.3.0" />
<PackageReference Include="System.Reflection.Extensions" Version="4.3.0" />
<PackageReference Include="System.Reflection.Primitives" Version="4.3.0" />
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.4.0" />
</ItemGroup>

<ItemGroup>
<Reference Include="System.Reflection.Emit.Lightweight">
<HintPath>C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Reflection.Emit.Lightweight.dll</HintPath>
</Reference>
</ItemGroup>

</Project>

Loading…
Cancel
Save