-
Notifications
You must be signed in to change notification settings - Fork 67
/
AltV.Net.csproj
53 lines (47 loc) · 1.97 KB
/
AltV.Net.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0</TargetFrameworks>
<Configurations>$(Configurations);Testing</Configurations>
<LangVersion>latest</LangVersion>
<Platforms>AnyCPU</Platforms>
<RootNamespace>AltV.Net</RootNamespace>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Authors>AltMp</Authors>
<Description>AltV .NET Core Server Api</Description>
<Copyright>AltMp</Copyright>
<PackageProjectUrl>https://github.com/FabianTerhorst/coreclr-module</PackageProjectUrl>
<RepositoryUrl>https://github.com/FabianTerhorst/coreclr-module</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>altv gta bridge gta5 gtav</PackageTags>
<PackageVersion>1.0.0</PackageVersion>
<PackageReleaseNotes>No changelog provided</PackageReleaseNotes>
<PackageLicenseFile>license.txt</PackageLicenseFile>
<PackageIcon>icon.png</PackageIcon>
<IncludeSymbols>true</IncludeSymbols>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<None Include="license\license.txt">
<Pack>true</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="icon.png">
<Pack>true</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Testing' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugType>full</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AltV.Net.Shared\AltV.Net.Shared.csproj" />
</ItemGroup>
</Project>