-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathAltV.Net.Async.CodeGen.csproj
74 lines (64 loc) · 2.91 KB
/
AltV.Net.Async.CodeGen.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>9</LangVersion>
<Nullable>enable</Nullable>
<Authors>AltMp</Authors>
<Description>AltV .NET Core Async CodeGen</Description>
<Copyright>AltMp</Copyright>
<PackageProjectUrl>https://github.com/altmp/coreclr-module</PackageProjectUrl>
<RepositoryUrl>https://github.com/altmp/coreclr-module</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>altv gta bridge</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>
<developmentDependency>true</developmentDependency>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IncludeBuildOutput>false</IncludeBuildOutput>
<NoPackageAnalysis>true</NoPackageAnalysis>
</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>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.8.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4" />
</ItemGroup>
<Target Name="AddNuGetDlls" BeforeTargets="_GetPackageFiles">
<JoinItems Left="@(ResolvedCompileFileDefinitions)" LeftKey="NuGetPackageId" LeftMetadata="*"
Right="@(PackageReference)" RightKey="" RightMetadata="*"
ItemSpecToUse="Left">
<Output TaskParameter="JoinResult" ItemName="_PackagesToPack" />
</JoinItems>
<ItemGroup>
<_PackagesToPack Remove="@(_PackagesToPack)" Condition="%(NuGetPackageId) == 'NETStandard.Library'" />
</ItemGroup>
<Message Importance="High" Text="Adding DLLs from the following packages: @(_PackagesToPack->'%(NuGetPackageId)')" />
<ItemGroup>
<None Include="@(_PackagesToPack)"
Pack="true"
PackagePath="analyzers/dotnet/cs"
Visible="false" />
<None Include="$(OutputPath)\$(AssemblyName).dll"
Pack="true"
PackagePath="analyzers/dotnet/cs"
Visible="false" />
<None Include="$(OutputPath)\$(AssemblyName).pdb"
Pack="true"
PackagePath="analyzers/dotnet/cs"
Visible="false" />
</ItemGroup>
</Target>
</Project>