-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathConsoleApp.csproj
More file actions
34 lines (29 loc) · 1.19 KB
/
ConsoleApp.csproj
File metadata and controls
34 lines (29 loc) · 1.19 KB
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
28
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>WinWhisper</AssemblyName>
<ApplicationIcon>WinWhisper-White_Icon.ico</ApplicationIcon>
<Platforms>AnyCPU;ARM64</Platforms>
<Version>1.4.4</Version>
<Description>WinWhisper is a Windows application that uses AI to detect and remove background noise from audio files.</Description>
<Authors>Jaap</Authors>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup>
<Content Include="WinWhisper-White_Icon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Sentry" Version="5.14.1" />
<PackageReference Include="Velopack" Version="0.0.626" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AudioExtractor\AudioExtractor.csproj" />
<ProjectReference Include="..\Utility\Utility.csproj" />
<ProjectReference Include="..\WhisperAI\WhisperAI.csproj" />
<ProjectReference Include="..\Data\Data.csproj" />
</ItemGroup>
</Project>