-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathOre Randomizer.csproj
More file actions
70 lines (64 loc) · 2.36 KB
/
Ore Randomizer.csproj
File metadata and controls
70 lines (64 loc) · 2.36 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>Ore_Randomizer</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3"/>
</ItemGroup>
<ItemGroup>
<Reference Include="Backend">
<HintPath>Dlls\Backend.dll</HintPath>
</Reference>
<Reference Include="Backend.PubSub">
<HintPath>Dlls\Backend.PubSub.dll</HintPath>
</Reference>
<Reference Include="BotLib">
<HintPath>Dlls\BotLib.dll</HintPath>
</Reference>
<Reference Include="Interfaces">
<HintPath>Dlls\Interfaces.dll</HintPath>
</Reference>
<Reference Include="NQutils">
<HintPath>Dlls\NQutils.dll</HintPath>
</Reference>
<Reference Include="Router">
<HintPath>Dlls\Router.dll</HintPath>
</Reference>
<Reference Include="Router.Orleans">
<HintPath>Dlls\Router.Orleans.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Update="Dlls\Backend.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Dlls\Backend.PubSub.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Dlls\BotLib.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Dlls\Interfaces.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Dlls\NQutils.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Dlls\Router.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Dlls\Router.Orleans.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Dlls\libsharedModule.so">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Dlls\sharedModule.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>