forked from julianperrott/WowClassicGrindBot
-
-
Notifications
You must be signed in to change notification settings - Fork 191
Expand file tree
/
Copy pathBlazorServer.csproj
More file actions
44 lines (37 loc) · 1.54 KB
/
BlazorServer.csproj
File metadata and controls
44 lines (37 loc) · 1.54 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
40
41
42
43
44
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<nullable>enable</nullable>
<UserSecretsId>84fcf2b0-dc89-4b31-b09b-fdd65679d1d2</UserSecretsId>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Core\Core.csproj" />
<ProjectReference Include="..\Frontend\Frontend.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="addon_config.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="data_config.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="frame_config.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Makaretu.Dns.Multicast.New" />
<PackageReference Include="Serilog.AspNetCore" />
<PackageReference Include="Serilog.Enrichers.Environment" />
<PackageReference Include="Serilog.Enrichers.Process" />
<PackageReference Include="Serilog.Expressions" />
<PackageReference Include="Serilog.Extensions.Logging" />
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy /s /Y /i "$(ProjectDir)..\Addons" "$(TargetDir)Addons"" />
</Target>
<Target Name="CopyCustomContentOnPublish" AfterTargets="Publish">
<Exec Command="xcopy /s /Y /i "$(ProjectDir)..\Addons" "$(PublishDir)Addons"" />
</Target>
</Project>