-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCommon.props
32 lines (26 loc) · 1.44 KB
/
Common.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
<Project>
<PropertyGroup>
<Authors>Andrei Ivascu</Authors>
<Copyright>Andrei Ivascu</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Description>A library aimed to minimize the setup of Entity Framework Core unit-testing database providers in conjunction with AutoFixture.</Description>
<PackageTags>EntityFramework;EntityFrameworkCore;EFCore;EF;AutoFixture;UnitTest;SQLite;In-Memory;Database;Tests</PackageTags>
<PackageProjectUrl>https://github.com/aivascu/EntityFrameworkCore.AutoFixture</PackageProjectUrl>
<RepositoryUrl>https://github.com/aivascu/EntityFrameworkCore.AutoFixture</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<!-- Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<!-- Embed source files that are not tracked by the source control manager in the PDB -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
<ItemGroup>
<!-- <SourceRoot Include="$(MSBuildThisFileDirectory)/"/> -->
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="all"/>
</ItemGroup>
<ItemGroup>
<None Include="..\..\readme.md" Pack="true" PackagePath="\"/>
<None Include="..\..\icon.png" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>