Skip to content

Commit

Permalink
Add project files.
Browse files Browse the repository at this point in the history
  • Loading branch information
sean_ authored and sean_ committed Dec 15, 2023
1 parent 02aea1e commit 472f6a8
Show file tree
Hide file tree
Showing 4 changed files with 611 additions and 0 deletions.
31 changes: 31 additions & 0 deletions PlayerOptionsOverlay.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.6.33723.286
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PlayerOptionsOverlay", "PlayerOptionsOverlay\PlayerOptionsOverlay.csproj", "{7097D478-C118-4B0C-810B-A5307A865A77}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{7097D478-C118-4B0C-810B-A5307A865A77}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7097D478-C118-4B0C-810B-A5307A865A77}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7097D478-C118-4B0C-810B-A5307A865A77}.Debug|x64.ActiveCfg = Debug|x64
{7097D478-C118-4B0C-810B-A5307A865A77}.Debug|x64.Build.0 = Debug|x64
{7097D478-C118-4B0C-810B-A5307A865A77}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7097D478-C118-4B0C-810B-A5307A865A77}.Release|Any CPU.Build.0 = Release|Any CPU
{7097D478-C118-4B0C-810B-A5307A865A77}.Release|x64.ActiveCfg = Release|x64
{7097D478-C118-4B0C-810B-A5307A865A77}.Release|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {4DD0ECC6-5D3D-405C-B6F2-F6F5D3BF865B}
EndGlobalSection
EndGlobal
26 changes: 26 additions & 0 deletions PlayerOptionsOverlay/PlayerOptionsOverlay.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Platforms>AnyCPU;x64</Platforms>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="ClickableTransparentOverlay" Version="6.2.1" />
<PackageReference Include="ImGui.NET" Version="1.89.7.1" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.0.1" />
<PackageReference Include="Veldrid.ImGui" Version="5.72.0" />
<PackageReference Include="Vortice.Mathematics" Version="1.6.2" />
</ItemGroup>

<ItemGroup>
<Reference Include="Memory">
<HintPath>..\..\..\..\Downloads\Memory.dll</HintPath>
</Reference>
</ItemGroup>

</Project>
Loading

0 comments on commit 472f6a8

Please sign in to comment.