-
Notifications
You must be signed in to change notification settings - Fork 16
/
Directory.Build.props
35 lines (33 loc) · 1.81 KB
/
Directory.Build.props
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
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<IsPackable>false</IsPackable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
</PropertyGroup>
<!-- NuGet Metadata -->
<PropertyGroup>
<Description>A library that facilitates runtime distribution of IL in the .NET</Description>
<Authors>Eirik Tsarpalis</Authors>
<Copyright>2019</Copyright>
<PackageTags>F#, fsharp, dynamic assemblies, code, distribution, cecil</PackageTags>
<RepositoryUrl>https://github.com/mbraceproject/Vagabond</RepositoryUrl>
<PackageProjectUrl>http://mbraceproject.github.io/Vagabond/</PackageProjectUrl>
<PackageIconUrl>https://avatars0.githubusercontent.com/u/9674757</PackageIconUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<!-- SourceLink Options -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<!--<IncludeSymbols>true</IncludeSymbols>-->
<!--<SymbolPackageFormat>snupkg</SymbolPackageFormat>-->
<LibTargetFrameworks>netstandard2.0;netcoreapp3.1</LibTargetFrameworks>
<TestTargetFrameworks>net472;net6.0</TestTargetFrameworks>
</PropertyGroup>
<!-- P2P nuget inlining workaround: c.f. http://yer.ac/blog/2019/09/05/dotnet-pack-project-reference-and-nuget-dependency/ -->
<Target Name="CopyProjectReferencesToPackage" DependsOnTargets="ResolveReferences">
<ItemGroup>
<BuildOutputInPackage Include="@(ReferenceCopyLocalPaths->WithMetadataValue('ReferenceSourceTarget', 'ProjectReference'))" />
</ItemGroup>
</Target>
</Project>