-
Notifications
You must be signed in to change notification settings - Fork 67
/
AltV.Net.EntitySync.ServerEvent.csproj
44 lines (39 loc) · 1.72 KB
/
AltV.Net.EntitySync.ServerEvent.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Authors>FabianTerhorst</Authors>
<Description>AltV .NET Core Entity Sync ServerEvent network layer</Description>
<Copyright>FabianTerhorst</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 chat</PackageTags>
<PackageVersion>1.0.0</PackageVersion>
<PackageReleaseNotes>No changelog provided</PackageReleaseNotes>
<PackageLicenseFile>license.txt</PackageLicenseFile>
<PackageIcon>icon.png</PackageIcon>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<TargetFrameworks>net6.0</TargetFrameworks>
<LangVersion>default</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<None Include="license\license.txt">
<Pack>true</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="icon.png">
<Pack>true</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AltV.Net.Async\AltV.Net.Async.csproj" />
<ProjectReference Include="..\AltV.Net.EntitySync\AltV.Net.EntitySync.csproj" />
<ProjectReference Include="..\AltV.Net\AltV.Net.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Threading.Channels" Version="6.0.0" />
</ItemGroup>
</Project>