diff options
| author | 2026-04-02 21:16:55 -0400 | |
|---|---|---|
| committer | 2026-04-02 21:58:31 -0400 | |
| commit | 9bebe7aa2ea80df948338e8b8cee256f7b6454d9 (patch) | |
| tree | ab2df8cc6f6978c8edfc2786f0ffcd1de85502f2 /NewCamera.csproj | |
| parent | c95b23e637fa1545a3ab2de0ec9b73d67332b4ad (diff) | |
| download | NewCamera-9bebe7aa2ea80df948338e8b8cee256f7b6454d9.tar.gz NewCamera-9bebe7aa2ea80df948338e8b8cee256f7b6454d9.tar.bz2 NewCamera-9bebe7aa2ea80df948338e8b8cee256f7b6454d9.zip | |
Gut graphics stuff, misc additions
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'NewCamera.csproj')
| -rwxr-xr-x | NewCamera.csproj | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/NewCamera.csproj b/NewCamera.csproj new file mode 100755 index 0000000..bde04c5 --- /dev/null +++ b/NewCamera.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>
|