ProjectPSX/ProjectPSX.WinForms/ProjectPSX.WinForms.csproj
2024-11-15 18:06:23 +01:00

23 lines
No EOL
676 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0-windows7.0</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<DisableWinExeOutputInference>true</DisableWinExeOutputInference>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NAudio.WinMM" Version="2.2.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ProjectPSX\ProjectPSX.csproj" />
</ItemGroup>
</Project>