-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathBlazorWebAssemblyApp.csproj
More file actions
23 lines (19 loc) · 1013 Bytes
/
BlazorWebAssemblyApp.csproj
File metadata and controls
23 lines (19 loc) · 1013 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<TargetFramework>$(targetFrameworkVersion)</TargetFramework>
<ApplicationIcon>..\icon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Pure.DI.Core\Pure.DI.Core.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false"/>
<ProjectReference Include="..\..\src\Pure.DI\Pure.DI.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false"/>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.5" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="10.0.5" PrivateAssets="all" />
<ProjectReference Include="..\Clock\Clock.csproj"/>
<Compile Include="..\..\src\Pure.DI.MS\any\Pure.DI\MS\*.cs" Link=""/>
</ItemGroup>
<ItemGroup>
<None Include="..\icon.ico">
<Link>icon.ico</Link>
</None>
</ItemGroup>
</Project>