Compare commits

...

6 Commits
PBR ... main

Author SHA1 Message Date
cosmonaut 7ed587e4a7 update sharpgltf 2020-12-08 23:43:44 -08:00
cosmonaut 9dc3037e12 fix platforms 2020-12-08 16:02:27 -08:00
cosmonaut ae6794e71b specify x64 2020-11-22 16:55:46 -08:00
cosmonaut 4c78ed3d39 Merge branch 'csproj' into main 2020-08-21 21:25:59 -07:00
cosmonaut ba97759191 add a core and framework csproj 2020-08-21 21:22:46 -07:00
cosmonaut 5a3858c0b7 Model Structure (#1) 2020-08-05 20:51:03 +00:00
2 changed files with 23 additions and 1 deletions

View File

@ -8,7 +8,7 @@
<Copyright>Cassandra Lugo and Evan Hemsley 2020</Copyright>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AssemblyName>Smuggler</AssemblyName>
<Platforms>AnyCPU;x86</Platforms>
<Platforms>x64</Platforms>
</PropertyGroup>
<ItemGroup>

22
Smuggler.Framework.csproj Normal file
View File

@ -0,0 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>Smuggler</RootNamespace>
<Version>0.1.0</Version>
<Authors>Cassandra Lugo; Evan Hemsley</Authors>
<Copyright>Cassandra Lugo and Evan Hemsley 2020</Copyright>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AssemblyName>Smuggler</AssemblyName>
<Platforms>x86;x64</Platforms>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SharpGLTF.Core" Version="1.0.0-alpha0020" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FNA\FNA.csproj" />
</ItemGroup>
</Project>