Project cleanup | Makes more sense for the user now.

This commit is contained in:
Michael C | lorexcold
2025-10-23 01:13:01 +02:00
parent 0f1fcf4db9
commit c2856d31e2
5 changed files with 16 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{81d8c460-4627-489b-8d5e-a0640866290f}</ProjectGuid>
<ProjectGuid>{81D8C460-4627-489B-8D5E-A0640866290F}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ExamplePatchMod</RootNamespace>
@@ -57,7 +57,9 @@
</ItemGroup>
<ItemGroup>
<Compile Include="BepInEx.cs" />
<Compile Include="Patches\ExamplePatchClass.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

View File

@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.14.36511.14
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExamplePatchMod", "ExamplePatchMod\ExamplePatchMod.csproj", "{81D8C460-4627-489B-8D5E-A0640866290F}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExamplePatchMod", "ExamplePatchMod.csproj", "{81D8C460-4627-489B-8D5E-A0640866290F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution

View File

@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ExamplePatchMod.Patches
{
internal class ExamplePatchClass
{
}
}