Skip to content
This repository has been archived by the owner on Oct 19, 2022. It is now read-only.

Commit

Permalink
Update for 4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nbarbettini committed Jul 24, 2017
1 parent d2307b1 commit 0e33b14
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions src/Stormpath.AspNetCore/Stormpath.AspNetCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Description>Stormpath middleware for ASP.NET Core. Easily add authentication and authorization to ASP.NET Core applications.</Description>
<Copyright>(c) 2016 Stormpath, Inc.</Copyright>
<VersionPrefix>4.0.0-rc5</VersionPrefix>
<VersionPrefix>4.0.0</VersionPrefix>
<Authors>Nate Barbettini</Authors>
<TargetFrameworks>net451;netstandard1.6</TargetFrameworks>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand All @@ -26,8 +26,8 @@
<PackageReference Include="Microsoft.AspNetCore.Mvc.ViewFeatures" Version="1.1.3" />
<PackageReference Include="Microsoft.AspNetCore.Owin" Version="1.1.2" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="1.1.2" />
<PackageReference Include="Stormpath.Owin.Middleware" Version="4.0.0-rc5" />
<PackageReference Include="Stormpath.Owin.Views.Precompiled" Version="1.0.0-beta5" />
<PackageReference Include="Stormpath.Owin.Middleware" Version="4.0.0" />
<PackageReference Include="Stormpath.Owin.Views.Precompiled" Version="1.0.0" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net451' ">
Expand Down
3 changes: 3 additions & 0 deletions test/Stormpath.AspNetCore.TckHarness/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,13 @@ public void ConfigureServices(IServiceCollection services)
// Add Stormpath services
var stormpathConfiguration = new StormpathConfiguration
{
// Replace with your Okta Base URL:
Org = "https://dev-123456.oktapreview.com",
// Replace with your Okta API token:
ApiToken = "your_token_here",
Application = new OktaApplicationConfiguration
{
// Replace with your Okta migrated Application ID:
Id = "abc123"
},
Web = new WebConfiguration
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<VersionPrefix>0.9.0</VersionPrefix>
<TargetFramework>netcoreapp1.0</TargetFramework>
<VersionPrefix>4.0.0</VersionPrefix>
<TargetFramework>netcoreapp1.1</TargetFramework>
<PreserveCompilationContext>true</PreserveCompilationContext>
<AssemblyName>Stormpath.AspNetCore.TckHarness</AssemblyName>
<OutputType>Exe</OutputType>
<PackageId>Stormpath.AspNetCore.TckHarness</PackageId>
<RuntimeFrameworkVersion>1.0.4</RuntimeFrameworkVersion>
<PackageTargetFallback>$(PackageTargetFallback);dotnet</PackageTargetFallback>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 0e33b14

Please sign in to comment.