-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSDMetaUI.csproj
More file actions
37 lines (31 loc) · 1.32 KB
/
Copy pathSDMetaUI.csproj
File metadata and controls
37 lines (31 loc) · 1.32 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<ServiceWorkerAssetsManifest>service-worker-assets.js</ServiceWorkerAssetsManifest>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BlazorPro.BlazorSize" Version="9.0.0" />
<PackageReference Include="Havit.Blazor.Components.Web.Bootstrap" Version="4.23.1" />
<PackageReference Include="PhotoSauce.MagicScaler" Version="0.15.0" />
<PackageReference Include="PhotoSauce.NativeCodecs.Libjpeg" Version="3.0.4-preview1" />
<PackageReference Include="PhotoSauce.NativeCodecs.Libpng" Version="1.6.44-preview1" />
<PackageReference Include="Polly" Version="8.6.6" />
<PackageReference Include="TestableIO.System.IO.Abstractions" Version="22.1.1" />
<PackageReference Include="TestableIO.System.IO.Abstractions.Wrappers" Version="22.1.1" />
</ItemGroup>
<ItemGroup>
<Folder Include="Data\" />
<Folder Include="wwwroot\" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="wwwroot\**\*" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SDMeta\SDMeta.csproj" />
</ItemGroup>
<ItemGroup>
<ServiceWorker Include="wwwroot\service-worker.js" PublishedContent="wwwroot\service-worker.published.js" />
</ItemGroup>
</Project>