forked from Xian55/WowClassicGrindBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlazorServer.csproj
More file actions
51 lines (43 loc) · 1.76 KB
/
BlazorServer.csproj
File metadata and controls
51 lines (43 loc) · 1.76 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
45
46
47
48
49
50
51
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<nullable>enable</nullable>
<UserSecretsId>84fcf2b0-dc89-4b31-b09b-fdd65679d1d2</UserSecretsId>
<ApplicationManifest>app.manifest</ApplicationManifest>
<Platforms>AnyCPU;x64;x86</Platforms>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Threads\**" />
<Content Remove="Threads\**" />
<EmbeddedResource Remove="Threads\**" />
<None Remove="Threads\**" />
</ItemGroup>
<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="Serilog.AspNetCore" Version="6.0.1" />
<PackageReference Include="Serilog.Enrichers.Environment" Version="2.2.0" />
<PackageReference Include="Serilog.Enrichers.Process" Version="2.0.2" />
<PackageReference Include="Serilog.Expressions" Version="3.4.1" />
<PackageReference Include="Serilog.Extensions.Logging" Version="3.1.0" />
</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>