Projektdateien hinzufügen.

This commit is contained in:
2024-05-21 13:15:21 +02:00
parent 1a9269e073
commit 72087a9309
6 changed files with 201 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Authors>Pilzinsel64</Authors>
<Version>1.0.0.0</Version>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<Platforms>x86</Platforms>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
<PropertyGroup>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<PropertyGroup>
<AppLibPath>$(SM64RMLibPath)\</AppLibPath>
</PropertyGroup>
<ItemGroup>
<Reference Include="$(AppLibPath)SM64RomManager*.dll">
<Private>false</Private>
</Reference>
<Reference Include="$(AppLibPath)SM64Lib*.dll">
<Private>false</Private>
</Reference>
<Reference Include="$(AppLibPath)Newtonsoft.Json.dll">
<Private>false</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Pilz.Plugins" Version="2.1.9" />
<PackageReference Include="Pilz.Plugins.Advanced" Version="2.7.3" />
<PackageReference Include="Pilz.Plugins.Advanced.UI.Telerik" Version="1.1.0" />
<PackageReference Include="Pilz.UI.Telerik" Version="2.1.0" />
<PackageReference Include="Pilz.UI.Telerik.SymbolFactory" Version="2.0.1" />
</ItemGroup>
</Project>