-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMIDIPianoJukebox.csproj
38 lines (32 loc) · 1.08 KB
/
MIDIPianoJukebox.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
30
31
32
33
34
35
36
37
38
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>12.0</LangVersion>
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
<StartupObject></StartupObject>
<Platforms>AnyCPU;x86</Platforms>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<EnableNETAnalyzers>True</EnableNETAnalyzers>
<ApplicationIcon>wwwroot\favicon.ico</ApplicationIcon>
<Nullable>disable</Nullable>
</PropertyGroup>
<ItemGroup>
<Compile Remove="src\**" />
<Content Remove="src\**" />
<EmbeddedResource Remove="src\**" />
<None Remove="src\**" />
</ItemGroup>
<ItemGroup>
<Content Remove="web.config" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="LiteDB" Version="5.0.21" />
<PackageReference Include="managed-midi" Version="1.10.1" />
<PackageReference Include="MudBlazor" Version="7.15.0" />
</ItemGroup>
<ItemGroup>
<Content Update="wwwroot\giphy.gif">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>