-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServerBackend.csproj
More file actions
76 lines (66 loc) · 2.77 KB
/
Copy pathServerBackend.csproj
File metadata and controls
76 lines (66 loc) · 2.77 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
71
72
73
74
75
76
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<InvariantGlobalization>true</InvariantGlobalization>
<StartupObject>VRCWMT.Server</StartupObject>
<NoWarn>1701;1702;0008;8500;8981</NoWarn>
<Platforms>AnyCPU;x64</Platforms>
<UserSecretsId>568ea3f4-8bdb-48f0-ac88-26a4e9bc06cd</UserSecretsId>
</PropertyGroup>
<PropertyGroup>
<FileVersion>1.3.0</FileVersion>
<AssemblyVersion>$(FileVersion).0</AssemblyVersion>
<Version>$(FileVersion)</Version>
<AssemblyName>VRCWMT</AssemblyName>
<ApplicationIcon>VRCWMT.ico</ApplicationIcon>
<PublishAot>False</PublishAot>
<Title>VRChat World Moderation Tool</Title>
<Authors>MagmaMC</Authors>
<Product>$(Title)</Product>
<Description>$(Title)</Description>
<Copyright>MIT</Copyright>
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl>
<RepositoryUrl>https://github.com/MagmaMCDev/VRCWMT</RepositoryUrl>
<PublishTrimmed>False</PublishTrimmed>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<DebugType>none</DebugType>
</PropertyGroup>
<ItemGroup>
<Content Include="VRCWMT.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MagmaMc.JEF" Version="5.0.1" />
<PackageReference Include="MagmaMc.MagmaSimpleConfig" Version="2.1.1" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.20.1" />
<PackageReference Include="Nanoid" Version="3.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Pastel" Version="4.2.0" />
<PackageReference Include="Spectre.Console" Version="0.48.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="MagmaMC.SharedLibrary">
<HintPath>Libraries/MagmaMC.SharedLibrary.dll</HintPath>
<DocumentationFile>Libraries/MagmaMC.SharedLibrary.xml</DocumentationFile>
</Reference>
<Reference Include="OpenVRChatAPI">
<HintPath>Libraries/OpenVRChatAPI.dll</HintPath>
</Reference>
<Reference Include="MagmaMC.PSC">
<HintPath>Libraries/MagmaMC.PSC.dll</HintPath>
<DocumentationFile>Libraries/MagmaMC.PSC.xml</DocumentationFile>
</Reference>
</ItemGroup>
</Project>