forked from MudBlazor/TryMudBlazor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTryMudBlazor.Server.csproj
More file actions
34 lines (28 loc) · 1.45 KB
/
TryMudBlazor.Server.csproj
File metadata and controls
34 lines (28 loc) · 1.45 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<Nullable>enable</Nullable>
<UserSecretsId>1fd261c7-898b-40dc-b869-d96c4b787fc1</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.13.1" />
<PackageReference Include="Azure.Storage.Blobs" Version="12.23.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.0" NoWarn="NU1605" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="9.0.0" NoWarn="NU1605" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="9.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TryMudBlazor.Client\TryMudBlazor.Client.csproj" />
<ProjectReference Include="..\Try.Core\Try.Core.csproj" />
<ProjectReference Include="..\MudBlazor.Examples.Data\MudBlazor.Examples.Data.csproj" />
</ItemGroup>
<!-- Copy the wwwroot output from TryMudBlazor.Client into this project's wwwroot/client directory -->
<ItemGroup>
<ClientWwwRootFiles Include="..\TryMudBlazor.Client\wwwroot\**\*" />
</ItemGroup>
<Target Name="CopyClientWwwRoot" AfterTargets="Build">
<Copy
SourceFiles="@(ClientWwwRootFiles)"
DestinationFiles="@(ClientWwwRootFiles->'$(ProjectDir)wwwroot\client\%(RecursiveDir)%(Filename)%(Extension)')"
SkipUnchangedFiles="true" />
</Target>
</Project>