-
Notifications
You must be signed in to change notification settings - Fork 1
/
Common.props
35 lines (28 loc) · 1.49 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
33
34
35
<Project>
<PropertyGroup>
<Authors>Andrei Ivascu</Authors>
<Copyright>Andrei Ivascu</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Description>A library that integrates AutoFixture with AutoMapper.</Description>
<PackageTags>AutoFixture;AutoMapper;Unit Testing;Tests</PackageTags>
<PackageProjectUrl>https://github.com/aivascu/AutoFixture.Community.AutoMapper</PackageProjectUrl>
<RepositoryUrl>https://github.com/aivascu/AutoFixture.Community.AutoMapper.git</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>
<!-- Set the CheckEolTargetFramework property to false to fix the NETSDK1138 warning -->
<CheckEolTargetFramework>false</CheckEolTargetFramework>
</PropertyGroup>
<ItemGroup>
<!-- <SourceRoot Include="$(MSBuildThisFileDirectory)/"/> -->
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<!-- <None Include="..\..\readme.md" Pack="true" PackagePath="\" /> -->
<None Include="..\..\icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>