Skip to content
This repository has been archived by the owner on Mar 20, 2019. It is now read-only.

Commit

Permalink
update nugets; rework folders
Browse files Browse the repository at this point in the history
  • Loading branch information
brockallen committed Aug 2, 2018
1 parent 7ee330f commit e15e88f
Show file tree
Hide file tree
Showing 94 changed files with 317 additions and 325 deletions.
4 changes: 2 additions & 2 deletions IdentityServer4.AspNetIdentity.sln
Expand Up @@ -7,9 +7,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{932FA9D0-7FB
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{E136E685-12DD-4782-945A-5E817BA176F1}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IdentityServer4.AspNetIdentity", "src\IdentityServer4.AspNetIdentity\IdentityServer4.AspNetIdentity.csproj", "{A2CDBE15-5898-4A04-94DC-133EE03A78B3}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IdentityServer4.AspNetIdentity", "src\IdentityServer4.AspNetIdentity.csproj", "{A2CDBE15-5898-4A04-94DC-133EE03A78B3}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Host", "src\Host\Host.csproj", "{B7FBA07C-A462-4869-AF94-5E36DFC3742D}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Host", "host\Host.csproj", "{B7FBA07C-A462-4869-AF94-5E36DFC3742D}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
22 changes: 12 additions & 10 deletions appveyor.yml
@@ -1,26 +1,28 @@
version: 1.0.{build}

image:
- Visual Studio 2017

environment:
APPVEYOR_YML_DISABLE_PS_LINUX: true

branches:
only:
- dev

build_script:
- ps: .\build.ps1
- sh: ./build.sh

test: off
artifacts:
- path: artifacts/packages/*.nupkg

deploy:
- provider: NuGet
server: https://www.myget.org/F/identity/
api_key:
secure: 43SK7fLJcrno252Wqb6j+jFYeTjaHG8EWXruhHv6kW+bbySa4uBGTPNFjA7lzD0Y
skip_symbols: true
on:
branch: dev

image: Visual Studio 2017

#---------------------------------#
# Skip builds for doc changes #
#---------------------------------#
skip_commits:
# Regex for matching commit message
message: /docs.*/
branch: dev
6 changes: 3 additions & 3 deletions build.cake
Expand Up @@ -4,7 +4,7 @@ var configuration = Argument<string>("configuration", "Release");
///////////////////////////////////////////////////////////////////////////////
// GLOBAL VARIABLES
///////////////////////////////////////////////////////////////////////////////
var packPath = Directory("./src/IdentityServer4.AspNetIdentity");
var packPath = Directory("./src");
var buildArtifacts = Directory("./artifacts/packages");

var isAppVeyor = AppVeyor.IsRunningOnAppVeyor;
Expand Down Expand Up @@ -55,7 +55,7 @@ Task("Test")
if (!isWindows)
{
Information("Not running on Windows - skipping tests for .NET Framework");
settings.Framework = "netcoreapp2.0";
settings.Framework = "netcoreapp2.1";
}
var projects = GetFiles("./test/**/*.csproj");
Expand All @@ -77,7 +77,7 @@ Task("Pack")
{
Configuration = configuration,
OutputDirectory = buildArtifacts,
ArgumentCustomization = args => args.Append("--include-symbols")
//ArgumentCustomization = args => args.Append("--include-symbols")
};
// add build suffix for CI builds
Expand Down

0 comments on commit e15e88f

Please sign in to comment.