forked from theRainbird/CoreRemoting
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
46 lines (34 loc) · 1.71 KB
/
Directory.Build.props
File metadata and controls
46 lines (34 loc) · 1.71 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
<Project>
<PropertyGroup>
<PackageReadmeFile>README.md</PackageReadmeFile>
<LangVersion>Latest</LangVersion>
<NoWarn>1701;1702;1591;1573</NoWarn>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!--
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)\keypair.key</AssemblyOriginatorKeyFile>
-->
<RepoRootPath>$(MSBuildThisFileDirectory)</RepoRootPath>
<PackageOutputPath>$(RepoRootPath)bin\Packages\$(Configuration)\NuGet\</PackageOutputPath>
<PackageProjectUrl>https://github.com/osexpert/GoreRemoting</PackageProjectUrl>
<PackageLicenseUrl></PackageLicenseUrl>
<RepositoryUrl>https://github.com/osexpert/GoreRemoting.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Company>osexpert</Company>
<PackageReleaseNotes>See https://github.com/osexpert/GoreRemoting/blob/main/CHANGELOG.md for details</PackageReleaseNotes>
<VersionPrefix>0.0.5</VersionPrefix>
<PackageTags>remoting rpc grpc dotnet-remoting</PackageTags>
<Description>Grpc Remoting library for migration from .NET Remoting</Description>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<!--
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols Condition=" '$(DebugType)' != 'embedded' ">true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
-->
</PropertyGroup>
<ItemGroup>
<None Include="$(RepoRootPath)README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>