-
-
Notifications
You must be signed in to change notification settings - Fork 95
/
NuGet.props
22 lines (22 loc) · 1.39 KB
/
NuGet.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
<Authors>Henrik Feldt and contributors</Authors>
<Owners>Henrik Feldt</Owners>
<Copyright>Copyright 2020 Authors & contributors</Copyright>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/haf/expecto</PackageProjectUrl>
<PackageIcon>expecto-logo-small.png</PackageIcon>
<PackageTags>test;testing;fsharp;assert;expect;stress;performance;unit;random;property</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildThisFileDirectory)/AssemblyInfo.fs" />
<None Include="$(MSBuildThisFileDirectory)/docs/expecto-logo-small.png" Pack="true" PackagePath="" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>
</Project>