diff options
| author | 2026-03-16 16:03:52 -0400 | |
|---|---|---|
| committer | 2026-03-16 16:03:52 -0400 | |
| commit | a6fcd3f4c75651e08c4392dea8a77b7fed1c2fe5 (patch) | |
| tree | be60df9efc6961ceb2e96b8411a688ec4e5ed4d6 /WorldTuningTool.csproj | |
| download | WorldTuningTool-a6fcd3f4c75651e08c4392dea8a77b7fed1c2fe5.tar.gz WorldTuningTool-a6fcd3f4c75651e08c4392dea8a77b7fed1c2fe5.tar.bz2 WorldTuningTool-a6fcd3f4c75651e08c4392dea8a77b7fed1c2fe5.zip | |
Outline of new features
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'WorldTuningTool.csproj')
| -rwxr-xr-x | WorldTuningTool.csproj | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/WorldTuningTool.csproj b/WorldTuningTool.csproj new file mode 100755 index 0000000..bde04c5 --- /dev/null +++ b/WorldTuningTool.csproj @@ -0,0 +1,26 @@ +<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <TargetFramework>net8.0</TargetFramework>
+ <ImplicitUsings>enable</ImplicitUsings>
+ <Nullable>enable</Nullable>
+ <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="SharpPluginLoader.ImGui" Version="1.90.2.3" />
+ </ItemGroup>
+
+ <ItemGroup>
+ <Reference Include="SharpPluginLoader.Bootstrapper">
+ <HintPath>..\SharpPluginLoader-fork\SharpPluginLoader.Bootstrapper\bin\Release\net8.0\SharpPluginLoader.Bootstrapper.dll</HintPath>
+ </Reference>
+ <Reference Include="SharpPluginLoader.Core">
+ <HintPath>..\SharpPluginLoader-fork\SharpPluginLoader.Core\bin\Release\net8.0\SharpPluginLoader.Core.dll</HintPath>
+ </Reference>
+ <Reference Include="SharpPluginLoader.InternalCallGenerator">
+ <HintPath>..\SharpPluginLoader-fork\SharpPluginLoader.InternalCallGenerator\bin\Release\netstandard2.0\SharpPluginLoader.InternalCallGenerator.dll</HintPath>
+ </Reference>
+ </ItemGroup>
+
+</Project>
|