-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathSkiaSharpDemo.Blazor.csproj
More file actions
39 lines (31 loc) · 1.58 KB
/
SkiaSharpDemo.Blazor.csproj
File metadata and controls
39 lines (31 loc) · 1.58 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
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<RootNamespace>SkiaSharpDemo.Blazor</RootNamespace>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<!-- Required for SkiaSharp native WASM bindings to be linked -->
<WasmBuildNative>true</WasmBuildNative>
<!-- Do not make NuGet packages or include in tests -->
<IsPackable>false</IsPackable>
<IsTestProject>false</IsTestProject>
<!-- Build info shown in the app footer; overridden by CI via -p:BuildInfo="..." -->
<BuildInfo Condition="'$(BuildInfo)' == ''">local</BuildInfo>
</PropertyGroup>
<ItemGroup>
<!-- Expose BuildInfo as an assembly-level attribute so the Blazor app can read it at runtime -->
<AssemblyAttribute Include="System.Reflection.AssemblyMetadataAttribute">
<_Parameter1>BuildInfo</_Parameter1>
<_Parameter2>$(BuildInfo)</_Parameter2>
</AssemblyAttribute>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.3" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="10.0.3" PrivateAssets="all" />
<PackageReference Include="SkiaSharp.Views.Blazor" Version="3.119.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\source\SkiaSharp.Extended\SkiaSharp.Extended.csproj" />
<ProjectReference Include="..\..\source\SkiaSharp.Extended.UI.Blazor\SkiaSharp.Extended.UI.Blazor.csproj" />
</ItemGroup>
</Project>