22 lines
625 B
XML
22 lines
625 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Folder Include="CPhysxlib\" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Reference Include="MagicPhysX">
|
|
<HintPath>C:\Users\Win11\.nuget\packages\magicphysx\1.0.0\lib\net6.0\MagicPhysX.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="MagicPhysX.Toolkit">
|
|
<HintPath>CPhysxlib\MagicPhysX.Toolkit.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
</Project>
|