|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | | - <PropertyGroup> |
4 | | - <OutputType>Exe</OutputType> |
5 | | - <TargetFramework>net9.0</TargetFramework> |
6 | | - <ImplicitUsings>enable</ImplicitUsings> |
7 | | - <Nullable>enable</Nullable> |
8 | | - <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
9 | | - <LangVersion>preview</LangVersion> |
10 | | - </PropertyGroup> |
| 3 | + <PropertyGroup> |
| 4 | + <OutputType>Exe</OutputType> |
| 5 | + <TargetFramework>net9.0</TargetFramework> |
| 6 | + <ImplicitUsings>enable</ImplicitUsings> |
| 7 | + <Nullable>enable</Nullable> |
| 8 | + <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
| 9 | + <LangVersion>preview</LangVersion> |
| 10 | + </PropertyGroup> |
11 | 11 |
|
12 | 12 | <ItemGroup> |
13 | | - <Reference Include="ModFramework"> |
14 | | - <HintPath>..\OTAPI.UnifiedServerProcess\bin\Debug\net9.0\ModFramework.dll</HintPath> |
15 | | - </Reference> |
16 | | - <Reference Include="Mono.Cecil"> |
17 | | - <HintPath>..\OTAPI.UnifiedServerProcess\bin\Debug\net9.0\Mono.Cecil.dll</HintPath> |
18 | | - </Reference> |
19 | | - <Reference Include="Mono.Cecil.Mdb"> |
20 | | - <HintPath>..\OTAPI.UnifiedServerProcess\bin\Debug\net9.0\Mono.Cecil.Mdb.dll</HintPath> |
21 | | - </Reference> |
22 | | - <Reference Include="Mono.Cecil.Pdb"> |
23 | | - <HintPath>..\OTAPI.UnifiedServerProcess\bin\Debug\net9.0\Mono.Cecil.Pdb.dll</HintPath> |
24 | | - </Reference> |
25 | | - <Reference Include="Mono.Cecil.Rocks"> |
26 | | - <HintPath>..\OTAPI.UnifiedServerProcess\bin\Debug\net9.0\Mono.Cecil.Rocks.dll</HintPath> |
27 | | - </Reference> |
28 | | - <Reference Include="MonoMod"> |
29 | | - <HintPath>..\OTAPI.UnifiedServerProcess\bin\Debug\net9.0\MonoMod.dll</HintPath> |
30 | | - </Reference> |
31 | | - <Reference Include="MonoMod.Backports"> |
32 | | - <HintPath>..\OTAPI.UnifiedServerProcess\bin\Debug\net9.0\MonoMod.Backports.dll</HintPath> |
33 | | - </Reference> |
34 | | - <Reference Include="MonoMod.Core"> |
35 | | - <HintPath>..\OTAPI.UnifiedServerProcess\bin\Debug\net9.0\MonoMod.Core.dll</HintPath> |
36 | | - </Reference> |
37 | | - <Reference Include="MonoMod.Iced"> |
38 | | - <HintPath>..\OTAPI.UnifiedServerProcess\bin\Debug\net9.0\MonoMod.Iced.dll</HintPath> |
39 | | - </Reference> |
40 | | - <Reference Include="MonoMod.ILHelpers"> |
41 | | - <HintPath>..\OTAPI.UnifiedServerProcess\bin\Debug\net9.0\MonoMod.ILHelpers.dll</HintPath> |
42 | | - </Reference> |
43 | | - <Reference Include="MonoMod.RuntimeDetour"> |
44 | | - <HintPath>..\OTAPI.UnifiedServerProcess\bin\Debug\net9.0\MonoMod.RuntimeDetour.dll</HintPath> |
45 | | - </Reference> |
46 | | - <Reference Include="MonoMod.RuntimeDetour.HookGen"> |
47 | | - <HintPath>..\OTAPI.UnifiedServerProcess\bin\Debug\net9.0\MonoMod.RuntimeDetour.HookGen.dll</HintPath> |
48 | | - </Reference> |
49 | | - <Reference Include="MonoMod.Utils"> |
50 | | - <HintPath>..\OTAPI.UnifiedServerProcess\bin\Debug\net9.0\MonoMod.Utils.dll</HintPath> |
51 | | - </Reference> |
| 13 | + <PackageReference Include="MonoMod.RuntimeDetour" Version="25.2.3" /> |
| 14 | + <PackageReference Include="MonoMod.RuntimeDetour.HookGen" Version="22.7.31.1" /> |
| 15 | + <PackageReference Include="ModFramework.Modules.CSharp" Version="1.1.15" /> |
| 16 | + </ItemGroup> |
| 17 | + <ItemGroup> |
52 | 18 | <Reference Include="OTAPI"> |
53 | 19 | <HintPath>..\OTAPI.UnifiedServerProcess\bin\Debug\net9.0\output\OTAPI.dll</HintPath> |
54 | 20 | </Reference> |
|
57 | 23 | </Reference> |
58 | 24 | </ItemGroup> |
59 | 25 |
|
60 | | - <ItemGroup> |
61 | | - <Compile Update="TestWorlds.Designer.cs"> |
62 | | - <DesignTime>True</DesignTime> |
63 | | - <AutoGen>True</AutoGen> |
64 | | - <DependentUpon>TestWorlds.resx</DependentUpon> |
65 | | - </Compile> |
66 | | - </ItemGroup> |
| 26 | + <ItemGroup> |
| 27 | + <Compile Update="TestWorlds.Designer.cs"> |
| 28 | + <DesignTime>True</DesignTime> |
| 29 | + <AutoGen>True</AutoGen> |
| 30 | + <DependentUpon>TestWorlds.resx</DependentUpon> |
| 31 | + </Compile> |
| 32 | + </ItemGroup> |
67 | 33 |
|
68 | | - <ItemGroup> |
69 | | - <EmbeddedResource Update="TestWorlds.resx"> |
70 | | - <Generator>ResXFileCodeGenerator</Generator> |
71 | | - <LastGenOutput>TestWorlds.Designer.cs</LastGenOutput> |
72 | | - </EmbeddedResource> |
73 | | - </ItemGroup> |
| 34 | + <ItemGroup> |
| 35 | + <EmbeddedResource Update="TestWorlds.resx"> |
| 36 | + <Generator>ResXFileCodeGenerator</Generator> |
| 37 | + <LastGenOutput>TestWorlds.Designer.cs</LastGenOutput> |
| 38 | + </EmbeddedResource> |
| 39 | + </ItemGroup> |
74 | 40 |
|
75 | | - <ItemGroup> |
76 | | - <ProjectReference Include="..\OTAPI.UnifiedServerProcess.ConsoleClient\OTAPI.UnifiedServerProcess.ConsoleClient.csproj" /> |
77 | | - </ItemGroup> |
| 41 | + <ItemGroup> |
| 42 | + <ProjectReference Include="..\OTAPI.UnifiedServerProcess.ConsoleClient\OTAPI.UnifiedServerProcess.ConsoleClient.csproj" /> |
| 43 | + </ItemGroup> |
78 | 44 |
|
79 | 45 | </Project> |
0 commit comments