Skip to content

Commit

Permalink
update nuspec + update appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
Courio-Dev committed Oct 2, 2018
1 parent b2a31ec commit 057d316
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 21 deletions.
6 changes: 3 additions & 3 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ artifacts:
- path: .\Artifacts\**\*.zip
name: Zip
# Store xUnit Test Results
- path: .\Artifacts\**\*.trx
- path: .\Artifacts\**\*.coverage.xml
name: xUnit Test Results


Expand All @@ -117,7 +117,7 @@ artifacts:
deploy:
- provider: GitHub
release: 'Release $(APPVEYOR_REPO_TAG_NAME) build $(APPVEYOR_BUILD_VERSION)'
description: '[**CHANGE LOG**](https://github.com/courio-dev/$(APPVEYOR_REPO_TAG_NAME)/blob/master/HISTORY.md)'
description: '[**CHANGE LOG**](https://github.com/courio-dev/$(APPVEYOR_PROJECT_SLUG)/blob/master/HISTORY.md)'
artifact: Zip, NuGet
draft: false
prerelease: $(IsPreRelease)
Expand All @@ -127,7 +127,7 @@ deploy:
on:
appveyor_repo_tag: true
# Deploying to MyGet feed
- provider: NuGet
- provider: MyGet
name: development
server: https://www.myget.org/F/courio-dev/api/v2/package
api_key:
Expand Down
40 changes: 23 additions & 17 deletions directory.build/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -12,31 +12,37 @@
<Import Project="Directory.Dependencies.Commons.props" />
<Import Project="Directory.CodeAnalysis.props" />

<!--<ItemGroup>
<Content Include="README.md"><Pack>true</Pack><PackagePath>..\</PackagePath></Content>
<Content Include="LICENSE"><Pack>true</Pack><PackagePath>LICENSE</PackagePath></Content>
</ItemGroup>-->

<PropertyGroup Label="Common Package">
<Title>An Unobtrusive Multitenancy helper for (new or existing) Asp.Net Core project</Title>
<Authors>Courio-Dev</Authors>
<Company>Courio-Dev</Company>
<Copyright>Copyright (c) Courio-Dev and contributors. All rights reserved.</Copyright>
<Description>Description</Description>
<ReleaseNotes></ReleaseNotes>
<Description>
An Unobtrusive Multitenancy helper for (new or existing) Asp.Net Core project

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.

It's support multitenant DI ,sandbox services, etc.
</Description>
<ReleaseNotes>https://github.com/courio-dev/UnobtrusiveMultitenancy/blob/master/HISTORY.md</ReleaseNotes>
<PackageProjectUrl>https://github.com/Courio-Dev/UnobtrusiveMultitenancy</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/Courio-Dev/UnobtrusiveMultitenancy/blob/master/LICENSE</PackageLicenseUrl>
<PackageIconUrl>https://github.com/Courio-Dev/UnobtrusiveMultitenancy</PackageIconUrl>
<RepositoryUrl>https://github.com/Courio-Dev/UnobtrusiveMultitenancy</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>
multitenancy
multitenant
multitenant-applications
tenant
dependency-injection
aspnet-core-2
aspnet-core-mvc
net-core-2
multitenancy
multitenant
multi-tenant
multitenant-applications
tenant
ASP.NET Core 2.1
aspnet-core-2
aspnet-core-mvc
.NET Core 2.1
dependency-injection
tenant-resolution
dotnet core 2.1
</PackageTags>
</PropertyGroup>

Expand Down Expand Up @@ -77,6 +83,7 @@
<IncludeSymbols>true</IncludeSymbols>
<NuspecProperties>
id=$(PackageId);
title=$(Title);
version=$(PackageVersion);
configuration=$(Configuration);
tags=$(PackageTags.Replace("&amp;", "&amp;amp;"));
Expand All @@ -88,8 +95,7 @@
author=$(Authors);
copyright=$(Copyright);
description=$(Description);
releaseNotes=$(ReleaseNotes)

releaseNotes=$(ReleaseNotes);
OutputBaseBinary=$(MSBuildProjectDirectory)\$(OutputPath);
</NuspecProperties>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata minClientVersion="4.0">
<id>$id$</id>
<title>$title$</title>
<version>$version$</version>
<authors>$author$</authors>
<copyright>$copyright$</copyright>
<licenseUrl>$licenseUrl$</licenseUrl>
<iconUrl>$iconUrl$</iconUrl>
<projectUrl>$projectUrl$</projectUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<developmentDependency>true</developmentDependency>
<developmentDependency>false</developmentDependency>
<description>$description$</description>
<releaseNotes>$releaseNotes$</releaseNotes>
<tags>$tags$</tags>
Expand Down

0 comments on commit 057d316

Please sign in to comment.