-
Notifications
You must be signed in to change notification settings - Fork 4
/
publish.props
42 lines (39 loc) · 1.67 KB
/
publish.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
36
37
38
39
40
41
42
<Project>
<PropertyGroup>
<PackageId>Reseed</PackageId>
<Description>
Initialize and clean integration tests database in a convenient, reliable and fast way.
</Description>
<PackageTags>Testing;Tests;Integration;Sql;Database;Data;Seed;Seeding;Cleanup;Respawn;NDbUnit;DbUnit;</PackageTags>
<PackageProjectUrl>https://github.com/v-zubritsky/Reseed</PackageProjectUrl>
<Authors>v-zubritsky</Authors>
</PropertyGroup>
<PropertyGroup>
<Configuration>Release</Configuration>
</PropertyGroup>
<!-- Build symbols package -->
<PropertyGroup>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<!-- Include readme to show at nuget.org -->
<!-- Currently fails because of https://github.com/NuGet/Home/issues/10791 -->
<!-- <PropertyGroup>
<PackageReadmeFile>readme.md</PackageReadmeFile>
</PropertyGroup> -->
<!-- <ItemGroup>
<None Include="$(MSBuildThisFileDirectory)\readme.md" Pack="true" PackagePath=""/>
</ItemGroup> -->
<!-- Support SourceLink -->
<PropertyGroup>
<RepositoryUrl>https://github.com/v-zubritsky/Reseed</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<RepositoryBranch>release</RepositoryBranch>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
</ItemGroup>
</Project>