-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathShelfLayoutManager.csproj
More file actions
40 lines (35 loc) · 1.6 KB
/
ShelfLayoutManager.csproj
File metadata and controls
40 lines (35 loc) · 1.6 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
35
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>ShelfLayoutManager</RootNamespace>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Component\**" />
<Content Remove="Component\**" />
<EmbeddedResource Remove="Component\**" />
<None Remove="Component\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="BlazorStrap" Version="5.2.103.250102" />
<PackageReference Include="bunit" Version="1.39.5" />
<PackageReference Include="MatBlazor" Version="2.10.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.4" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="9.0.4" PrivateAssets="all" />
<PackageReference Include="Moq" Version="4.20.72" />
<PackageReference Include="System.Reactive" Version="6.0.1" />
<PackageReference Include="System.Reactive.Linq" Version="6.0.1" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Folder Include="wwwroot\js\" />
<Folder Include="wwwroot\img\" />
</ItemGroup>
</Project>