First compile

This commit is contained in:
Andrew Cassidy 2020-05-30 14:24:31 -07:00
parent 36afcab63c
commit 60234cbf7c
No known key found for this signature in database
GPG Key ID: 963017B38FD477A1
4 changed files with 9 additions and 1 deletions

1
.gitattributes vendored
View File

@ -5,3 +5,4 @@
*.mu filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.tif filter=lfs diff=lfs merge=lfs -text
*.dll filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored
View File

@ -35,6 +35,7 @@ ExportedObj/
# Binaries and support files
Source/ConformalDecals/dlls
Source/ConformalDecals/bin
!Source/ConformalDecals.sln
!Source/ConformalDecals/ConformalDecals.csproj

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:73cd94acb4687058e5a69522168bcd31d6ce65a9ba7be7cffe4fa8d76a1ca0fc
size 23552

View File

@ -38,6 +38,9 @@
<HintPath>dlls/Shabby.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="UnityEngine, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>dlls\UnityEngine.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>dlls\UnityEngine.CoreModule.dll</HintPath>
</Reference>
@ -56,6 +59,6 @@
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PostBuildEvent>sh -e -c "cp -v '$(TargetPath)' '$(SolutionDir)/Releases/ConformalDecals/Gamedata'"</PostBuildEvent>
<PostBuildEvent>sh -e -c "cp -v '$(TargetPath)' '$(SolutionDir)/../Distribution/GameData/ConformalDecals/Plugins'"</PostBuildEvent>
</PropertyGroup>
</Project>