forked from RocketModPlugins/WebsiteCommand
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WebsiteCommands.csproj
33 lines (33 loc) · 1.27 KB
/
WebsiteCommands.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net35</TargetFrameworks>
<AssemblyName>WebsiteCommand</AssemblyName>
<RootNamespace>WebsiteCommand</RootNamespace>
<OutputType>Library</OutputType>
</PropertyGroup>
<PropertyGroup>
<PackageId>WebsiteCommand</PackageId>
<PackageTags>RocketMod Unturned</PackageTags>
<PackageAuthors>sharkbound, Enes Sadık Özbek <esozbek.me></PackageAuthors>
<PackageOwners>sharkbound</PackageOwners>
<Version>1.0.0.0</Version>
<PackageVersion>1.0.0.0</PackageVersion>
<Authors>sharkbound, Enes Sadık Özbek <esozbek.me></Authors>
<Description>Provides custom website commands.</Description>
<Copyright>sharkbound</Copyright>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Rocket.Core" Version="5.0.0.566">
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
</PackageReference>
<PackageReference Include="Rocket.Unturned" Version="5.0.0.162" />
</ItemGroup>
<ItemGroup>
<Reference Include="UnityEngine">
<HintPath>lib\UnityEngine.dll</HintPath>
</Reference>
</ItemGroup>
</Project>