forked from TomGrobbe/vMenu
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvMenuServer.csproj
More file actions
54 lines (47 loc) · 1.87 KB
/
vMenuServer.csproj
File metadata and controls
54 lines (47 loc) · 1.87 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net452</TargetFramework>
<DebugType>embedded</DebugType>
<Configurations>Release;Debug</Configurations>
<AssemblyName>vMenuServer.net</AssemblyName>
<TargetName>$(AssemblyName)</TargetName>
<OutputPath>..\build\vMenu\</OutputPath>
<DefineConstants>SERVER</DefineConstants>
<LangVersion>12.0</LangVersion>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\SharedClasses\ConfigManager.cs" Link="ConfigManager.cs" />
<Compile Include="..\SharedClasses\PermissionsManager.cs" Link="PermissionsManager.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="Microsoft.CSharp" />
<PackageReference Include="CitizenFX.Core.Server" Version="1.0.8883">
<ExcludeAssets>runtime</ExcludeAssets>
</PackageReference>
<Reference Include="Newtonsoft.Json">
<HintPath>..\dependencies\shared\Newtonsoft.Json.dll</HintPath>
<Private>false</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<None Update="config\*.*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="storage.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="System.Numerics.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<EditorConfigFiles Remove="D:\tomgr\Documents\GitHub-Repos\vMenu\vMenu\vMenuServer\.editorconfig" />
</ItemGroup>
<ItemGroup>
<None Include="D:\tomgr\Documents\GitHub-Repos\vMenu\vMenu\vMenuServer\.editorconfig" />
</ItemGroup>
</Project>