From 6a000c805ed6fdbd2dcf01864d712311a3ac9b01 Mon Sep 17 00:00:00 2001 From: drewcassidy Date: Mon, 25 May 2020 20:42:24 -0700 Subject: [PATCH] Setup C# project --- .gitignore | 6 +++ Source/ConformalDecals.sln | 16 ++++++ Source/ConformalDecals/ConformalDecals.csproj | 52 +++++++++++++++++++ .../Properties/AssemblyInfo.cs | 38 ++++++++++++++ 4 files changed, 112 insertions(+) create mode 100644 Source/ConformalDecals.sln create mode 100644 Source/ConformalDecals/ConformalDecals.csproj create mode 100644 Source/ConformalDecals/Properties/AssemblyInfo.cs diff --git a/.gitignore b/.gitignore index 0d8cb65..ec04f0c 100644 --- a/.gitignore +++ b/.gitignore @@ -33,6 +33,12 @@ ExportedObj/ *.opendb *.VC.db +# Binaries and support files +Source/ConformalDecals/dlls + +!Source/ConformalDecals.sln +!Source/ConformalDecals/ConformalDecals.csproj + # Misc Files .ds_store *.sublime* diff --git a/Source/ConformalDecals.sln b/Source/ConformalDecals.sln new file mode 100644 index 0000000..5962f05 --- /dev/null +++ b/Source/ConformalDecals.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConformalDecals", "ConformalDecals/ConformalDecals.csproj", "{1ea983f9-42e5-494e-9683-fdac9c9121f4}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {1ea983f9-42e5-494e-9683-fdac9c9121f4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1ea983f9-42e5-494e-9683-fdac9c9121f4}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1ea983f9-42e5-494e-9683-fdac9c9121f4}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1ea983f9-42e5-494e-9683-fdac9c9121f4}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/Source/ConformalDecals/ConformalDecals.csproj b/Source/ConformalDecals/ConformalDecals.csproj new file mode 100644 index 0000000..5901447 --- /dev/null +++ b/Source/ConformalDecals/ConformalDecals.csproj @@ -0,0 +1,52 @@ + + + + + Debug + AnyCPU + {1ea983f9-42e5-494e-9683-fdac9c9121f4} + Library + Properties + v4.6 + 512 + true + 7 + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + dlls/Assembly-CSharp.dll + + + dlls/Shabby.dll + + + + + dlls/UnityEngine.dll + + + + + + + + sh -e -c "cp -v '$(TargetPath)' '$(SolutionDir)/Releases/ConformalDecals/Gamedata'" + + diff --git a/Source/ConformalDecals/Properties/AssemblyInfo.cs b/Source/ConformalDecals/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..27895b0 --- /dev/null +++ b/Source/ConformalDecals/Properties/AssemblyInfo.cs @@ -0,0 +1,38 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Conformal Decals")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Cineboxandrew")] +[assembly: AssemblyProduct("ConformalDecals")] +[assembly: AssemblyCopyright("Copyright © Andrew Cassidy 2020")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("1ea983f9-42e5-494e-9683-fdac9c9121f4")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] + +[assembly: KSPAssembly("ConformalDecals", 0, 1, 0)]