blob: f417d2058d2fa681d2bcf0e0b24de3c849246d20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<Platforms>x64</Platforms>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\TranscribeCS\AnsiCodes.cs" Link="AnsiCodes.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="..\..\x64\$(Configuration)\Whisper.dll" Link="Whisper.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\WhisperNet\WhisperNet.csproj" />
</ItemGroup>
</Project>
|