-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathExample.Web.csproj
More file actions
22 lines (18 loc) · 917 Bytes
/
Example.Web.csproj
File metadata and controls
22 lines (18 loc) · 917 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyName>Wacton.Unicolour.Example.Web</AssemblyName>
<RootNamespace>Wacton.Unicolour.Example.Web</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.21" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.21" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Unicolour.Datasets\Unicolour.Datasets.csproj" />
<ProjectReference Include="..\Unicolour.Experimental\Unicolour.Experimental.csproj" />
<ProjectReference Include="..\Unicolour\Unicolour.csproj" />
</ItemGroup>
</Project>