-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbroadcast-preferences.csproj
More file actions
48 lines (45 loc) · 2.3 KB
/
broadcast-preferences.csproj
File metadata and controls
48 lines (45 loc) · 2.3 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<LangVersion>11</LangVersion>
<RootNamespace>Oxide.Plugins</RootNamespace>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<WarningsAsErrors>nullable</WarningsAsErrors>
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
<NoStandardLibraries>true</NoStandardLibraries>
<NoStdLib>true</NoStdLib>
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
<NoCompilerStandardLib>true</NoCompilerStandardLib>
</PropertyGroup>
<ItemGroup>
<Compile Remove="BroadcastPreferences.cs" />
<Compile Remove="server/oxide/plugins/*.cs" />
</ItemGroup>
<ItemGroup>
<Reference
Include="server/RustDedicated_Data/Managed\*.dll"
Exclude="
server\RustDedicated_Data\Managed\Newtonsoft.Json.dll;
server\RustDedicated_Data\Managed\System.Net.Http.dll;
server\RustDedicated_Data\Managed\Microsoft.Win32.Registry.dll;
server\RustDedicated_Data\Managed\System.Threading.Tasks.Extensions.dll;
server\RustDedicated_Data\Managed\System.Configuration.Install.dll;
server\RustDedicated_Data\Managed\System.IO.Compression.dll;
server\RustDedicated_Data\Managed\System.Runtime.dll;
server\RustDedicated_Data\Managed\System.IO.FileSystem.AccessControl.dll;
server\RustDedicated_Data\Managed\System.Security.Principal.Windows.dll;
server\RustDedicated_Data\Managed\System.Security.AccessControl.dll;
server\RustDedicated_Data\Managed\Microsoft.Bcl.AsyncInterfaces.dll;
server\RustDedicated_Data\Managed\System.Text.Encodings.Web.dll;
server\RustDedicated_Data\Managed\System.Security.Cryptography.ProtectedData.dll;
server\RustDedicated_Data\Managed\System.Numerics.Vectors.dll;
"
Private="false"
/>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="dotnet tool run plugin.merge -- -m -c -p merge.json" />
<Exec Command="dotnet tool run csharpier -- format ." />
</Target>
</Project>