Add project files

This commit is contained in:
2022-08-13 11:17:06 -07:00
parent 4e80a77e5e
commit bd12c1a5f0
2 changed files with 39 additions and 0 deletions

25
ScrampzLibrary.sln Normal file
View File

@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.2.32526.322
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ScrampzLibrary", "ScrampzLibrary\ScrampzLibrary.csproj", "{4DC6E6A1-1BF2-4E9B-8C44-5A82521DF4EC}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{4DC6E6A1-1BF2-4E9B-8C44-5A82521DF4EC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4DC6E6A1-1BF2-4E9B-8C44-5A82521DF4EC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4DC6E6A1-1BF2-4E9B-8C44-5A82521DF4EC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4DC6E6A1-1BF2-4E9B-8C44-5A82521DF4EC}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {FB90BAEE-6BA3-45C3-AD12-4C041A48C038}
EndGlobalSection
EndGlobal

View File

@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Reference Include="UnityEngine">
<HintPath>D:\Unity\Unity Hub\Editor\2021.3.8f1\Editor\Data\Managed\UnityEngine\UnityEngine.dll</HintPath>
</Reference>
</ItemGroup>
</Project>