19 lines
678 B
XML
19 lines
678 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<RootNamespace>RealtimeOneShotProbe</RootNamespace>
|
|
<AssemblyName>Probe</AssemblyName>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<RuntimeIdentifier>linux-arm64</RuntimeIdentifier>
|
|
<SelfContained>true</SelfContained>
|
|
<PublishSingleFile>false</PublishSingleFile>
|
|
<InvariantGlobalization>true</InvariantGlobalization>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="PortAudioSharp2" Version="1.0.6" />
|
|
</ItemGroup>
|
|
</Project>
|