forked from robertmeta/sharpwin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSharpWin.csproj
More file actions
28 lines (26 loc) · 791 Bytes
/
SharpWin.csproj
File metadata and controls
28 lines (26 loc) · 791 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Compile Remove="mechanical\main.cs" />
</ItemGroup>
<ItemGroup>
<None Remove="main.txt" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NAudio" Version="2.2.1" />
<PackageReference Include="NVorbis" Version="0.10.5" />
<PackageReference Include="System.Speech" />
<!--
<PackageReference Include="System.Collections.Generic" />
<PackageReference Include="System.Linq" />
-->
</ItemGroup>
<ItemGroup>
<Folder Include="mechanical\" />
</ItemGroup>
</Project>