-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathMidiFileConverter.csproj
29 lines (29 loc) · 1.14 KB
/
MidiFileConverter.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0-windows</TargetFramework>
<OutputType>WinExe</OutputType>
<RootNamespace>MarkHeath.MidiUtils</RootNamespace>
<AssemblyName>MIDI File Converter</AssemblyName>
<Version>0.4.0.0</Version>
<UseWindowsForms>true</UseWindowsForms>
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\NAudio.Midi\NAudio.Midi.csproj" />
<ProjectReference Include="..\NAudio.WinForms\NAudio.WinForms.csproj" />
<ProjectReference Include="..\NAudio\NAudio.csproj" />
</ItemGroup>
<ItemGroup>
<Content Include="midi_file_converter.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="NamingRules.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers" Version="0.3.310801">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
</Project>