Skip to content

Commit 057d316

Browse files
committed
update nuspec + update appveyor
1 parent b2a31ec commit 057d316

File tree

3 files changed

+28
-21
lines changed

3 files changed

+28
-21
lines changed

.appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ artifacts:
106106
- path: .\Artifacts\**\*.zip
107107
name: Zip
108108
# Store xUnit Test Results
109-
- path: .\Artifacts\**\*.trx
109+
- path: .\Artifacts\**\*.coverage.xml
110110
name: xUnit Test Results
111111

112112

@@ -117,7 +117,7 @@ artifacts:
117117
deploy:
118118
- provider: GitHub
119119
release: 'Release $(APPVEYOR_REPO_TAG_NAME) build $(APPVEYOR_BUILD_VERSION)'
120-
description: '[**CHANGE LOG**](https://github.com/courio-dev/$(APPVEYOR_REPO_TAG_NAME)/blob/master/HISTORY.md)'
120+
description: '[**CHANGE LOG**](https://github.com/courio-dev/$(APPVEYOR_PROJECT_SLUG)/blob/master/HISTORY.md)'
121121
artifact: Zip, NuGet
122122
draft: false
123123
prerelease: $(IsPreRelease)
@@ -127,7 +127,7 @@ deploy:
127127
on:
128128
appveyor_repo_tag: true
129129
# Deploying to MyGet feed
130-
- provider: NuGet
130+
- provider: MyGet
131131
name: development
132132
server: https://www.myget.org/F/courio-dev/api/v2/package
133133
api_key:

directory.build/Directory.Build.props

Lines changed: 23 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -12,31 +12,37 @@
1212
<Import Project="Directory.Dependencies.Commons.props" />
1313
<Import Project="Directory.CodeAnalysis.props" />
1414

15-
<!--<ItemGroup>
16-
<Content Include="README.md"><Pack>true</Pack><PackagePath>..\</PackagePath></Content>
17-
<Content Include="LICENSE"><Pack>true</Pack><PackagePath>LICENSE</PackagePath></Content>
18-
</ItemGroup>-->
19-
2015
<PropertyGroup Label="Common Package">
16+
<Title>An Unobtrusive Multitenancy helper for (new or existing) Asp.Net Core project</Title>
2117
<Authors>Courio-Dev</Authors>
2218
<Company>Courio-Dev</Company>
2319
<Copyright>Copyright (c) Courio-Dev and contributors. All rights reserved.</Copyright>
24-
<Description>Description</Description>
25-
<ReleaseNotes></ReleaseNotes>
20+
<Description>
21+
An Unobtrusive Multitenancy helper for (new or existing) Asp.Net Core project
22+
23+
The goal of this project is to add the multitenancy functionality to an ASP.NET Core application (existing or new) without modification (or very little) of code.
24+
25+
It's support multitenant DI ,sandbox services, etc.
26+
</Description>
27+
<ReleaseNotes>https://github.com/courio-dev/UnobtrusiveMultitenancy/blob/master/HISTORY.md</ReleaseNotes>
2628
<PackageProjectUrl>https://github.com/Courio-Dev/UnobtrusiveMultitenancy</PackageProjectUrl>
2729
<PackageLicenseUrl>https://github.com/Courio-Dev/UnobtrusiveMultitenancy/blob/master/LICENSE</PackageLicenseUrl>
2830
<PackageIconUrl>https://github.com/Courio-Dev/UnobtrusiveMultitenancy</PackageIconUrl>
2931
<RepositoryUrl>https://github.com/Courio-Dev/UnobtrusiveMultitenancy</RepositoryUrl>
3032
<RepositoryType>git</RepositoryType>
3133
<PackageTags>
32-
multitenancy
33-
multitenant
34-
multitenant-applications
35-
tenant
36-
dependency-injection
37-
aspnet-core-2
38-
aspnet-core-mvc
39-
net-core-2
34+
multitenancy
35+
multitenant
36+
multi-tenant
37+
multitenant-applications
38+
tenant
39+
ASP.NET Core 2.1
40+
aspnet-core-2
41+
aspnet-core-mvc
42+
.NET Core 2.1
43+
dependency-injection
44+
tenant-resolution
45+
dotnet core 2.1
4046
</PackageTags>
4147
</PropertyGroup>
4248

@@ -77,6 +83,7 @@
7783
<IncludeSymbols>true</IncludeSymbols>
7884
<NuspecProperties>
7985
id=$(PackageId);
86+
title=$(Title);
8087
version=$(PackageVersion);
8188
configuration=$(Configuration);
8289
tags=$(PackageTags.Replace("&amp;", "&amp;amp;"));
@@ -88,8 +95,7 @@
8895
author=$(Authors);
8996
copyright=$(Copyright);
9097
description=$(Description);
91-
releaseNotes=$(ReleaseNotes)
92-
98+
releaseNotes=$(ReleaseNotes);
9399
OutputBaseBinary=$(MSBuildProjectDirectory)\$(OutputPath);
94100
</NuspecProperties>
95101
</PropertyGroup>

src/PuzzleCMS.Core/PuzzleCMS.Core.Multitenancy/PuzzleCMS.Core.Multitenancy.nuspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
33
<metadata minClientVersion="4.0">
44
<id>$id$</id>
5+
<title>$title$</title>
56
<version>$version$</version>
67
<authors>$author$</authors>
78
<copyright>$copyright$</copyright>
89
<licenseUrl>$licenseUrl$</licenseUrl>
910
<iconUrl>$iconUrl$</iconUrl>
1011
<projectUrl>$projectUrl$</projectUrl>
1112
<requireLicenseAcceptance>true</requireLicenseAcceptance>
12-
<developmentDependency>true</developmentDependency>
13+
<developmentDependency>false</developmentDependency>
1314
<description>$description$</description>
1415
<releaseNotes>$releaseNotes$</releaseNotes>
1516
<tags>$tags$</tags>

0 commit comments

Comments
 (0)