14 lines
560 B
Text
14 lines
560 B
Text
|
|
<Project>
|
||
|
|
<PropertyGroup>
|
||
|
|
<TargetFramework>net10.0-windows</TargetFramework>
|
||
|
|
<LangVersion>latest</LangVersion>
|
||
|
|
<Nullable>enable</Nullable>
|
||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||
|
|
<!-- Required by source-generated P/Invoke (LibraryImport). -->
|
||
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||
|
|
<!-- RSNet.dll is 32-bit (x86). Consumers of the native interop must run as x86. -->
|
||
|
|
<PlatformTarget>x86</PlatformTarget>
|
||
|
|
<Platforms>x86</Platforms>
|
||
|
|
</PropertyGroup>
|
||
|
|
</Project>
|