forked from Xian55/WowClassicGrindBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPathingAPI.csproj
More file actions
39 lines (33 loc) · 1.32 KB
/
PathingAPI.csproj
File metadata and controls
39 lines (33 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
38
39
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<UserSecretsId>199F51BE-7200-4EA9-97D0-287EFCB371BD</UserSecretsId>
<DocumentationFile>PathingAPI.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Include="wwwroot\teleport_locations.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="MatBlazor" />
<PackageReference Include="MessagePack" />
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" />
<PackageReference Include="Serilog.AspNetCore" />
<PackageReference Include="Serilog.Expressions" />
<PackageReference Include="Serilog.Extensions.Logging" />
<PackageReference Include="Serilog.Sinks.File" />
<PackageReference Include="Swashbuckle.AspNetCore" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Core\Core.csproj" />
<ProjectReference Include="..\DataConfig\DataConfig.csproj" />
<ProjectReference Include="..\Frontend\Frontend.csproj" />
<ProjectReference Include="..\PPather\PPather.csproj" />
<ProjectReference Include="..\SharedLib\SharedLib.csproj" />
</ItemGroup>
<ItemGroup>
<Content Update="wwwroot\js\babylonjs.js">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>