Update the documentation pages

This commit is contained in:
OpenIddict Bot 2022-01-07 16:01:25 +00:00
parent c7d19ecbc3
commit 61bd763dc1
64 changed files with 134 additions and 134 deletions

View File

@ -80,7 +80,7 @@ developed and maintained by Microsoft to generate signed and encrypted tokens us
<h3 id="jwt-token-types">JWT token types</h3>
<p>To protect against token substitution and confused deputy attacks, <strong>OpenIddict 3.0 uses the standard <code>typ</code> JWT header to convey the actual token type</strong>.
This mechanism replaces the private <code>token_usage</code> claim used for the same purpose in previous versions of OpenIddict.</p>
<p>As required by the <a href="https://tools.ietf.org/html/draft-ietf-oauth-access-token-jwt-04#section-2.1">JSON Web Token (JWT) Profile for OAuth 2.0 Access Tokens draft</a>,
<p>As required by the <a href="https://datatracker.ietf.org/doc/html/rfc9068">JSON Web Token (JWT) Profile for OAuth 2.0 Access Tokens specification</a>,
<strong>access tokens produced by OpenIddict 3.0 are always issued with a <code>&quot;typ&quot;: &quot;at+jwt&quot;</code> header</strong> while identity tokens still use <code>&quot;typ&quot;: &quot;JWT&quot;</code> for backward compatibility.
Other types of tokens only accepted by OpenIddict&#39;s own endpoints use private token types prefixed by <code>oi_</code>.</p>
<h3 id="disabling-jwt-access-token-encryption">Disabling JWT access token encryption</h3>

View File

@ -159,9 +159,9 @@ the pass-through mode for these endpoints, so that requests can reach your autho
.AddServer(options =&gt;
{
options.UseAspNetCore()
.EnableAuthorizationEndpointPassthrough()
.EnableLogoutEndpointPassthrough()
.EnableTokenEndpointPassthrough();
.EnableAuthorizationEndpointPassthrough()
.EnableLogoutEndpointPassthrough()
.EnableTokenEndpointPassthrough();
});
</code></pre><h2 id="enable-aspnet-core-data-protection-support-to-ensure-existing-tokens-can-still-be-validated">Enable ASP.NET Core Data Protection support to ensure existing tokens can still be validated</h2>
<p>For that, call <code>options.UseDataProtection()</code> in both the server and validation options:</p>
@ -181,13 +181,13 @@ was replaced by 2 separate methods. If your application depends on request cachi
.AddServer(options =&gt;
{
options.UseAspNetCore()
.EnableAuthorizationRequestCaching()
.EnableLogoutRequestCaching();
.EnableAuthorizationRequestCaching()
.EnableLogoutRequestCaching();
});
</code></pre><h2 id="replace-jsonnet-by-systemtextjson">Replace JSON.NET by <code>System.Text.Json</code></h2>
<p>If you use JSON.NET to serialize or deserialize <code>OpenIdConnectMessage</code>, <code>OpenIdConnectRequest</code> or <code>OpenIdConnectResponse</code> instances,
consider moving to <code>System.Text.Json</code> when migrating to OpenIddict 3.0, as 3.0 no longer includes a built-in JSON.NET <code>JsonConverter</code> for their
equivalent in 3.0: <code>OpenIddictMessage</code>, <code>OpenIddictRequest</code> or <code>OpenIddictResponse</code>.</p>
equivalent in 3.0 (i.e <code>OpenIddictMessage</code>, <code>OpenIddictRequest</code> and <code>OpenIddictResponse</code>).</p>
<p>In most cases, this should be as simple as replacing <code>JsonConvert.SerializeObject()</code>/<code>JsonConvert.DeserializeObject()</code>
by their <code>System.Text.Json</code> equivalent: <code>JsonSerializer.Serialize()</code>/<code>JsonSerializer.Deserialize()</code>.</p>
<h2 id="replace-calls-to-the-authenticationticket-extensions-by-their-new-claimsprincipal-equivalent">Replace calls to the <code>AuthenticationTicket</code> extensions by their new <code>ClaimsPrincipal</code> equivalent:</h2>
@ -219,11 +219,11 @@ If you have calls like <code>ticket.SetScopes()</code> or <code>ticket.SetResour
</table>
<div class="NOTE"><h5>Note</h5><p>In 3.0, the OpenIddict server ASP.NET Core handler supports authenticating userinfo requests. As such, if you use the pass-through mode
to handle userinfo requests in your own userinfo MVC action, consider using <code>OpenIddictServerAspNetCoreDefaults.AuthenticationScheme</code>
instead of <code>OpenIddictValidationAspNetCoreDefaults.AuthenticationScheme</code> for your userinfo endpoint to avoid duplicate access token validation.</p>
instead of <code>OpenIddictValidationAspNetCoreDefaults.AuthenticationScheme</code> for your userinfo endpoint to avoid validating access tokens twice.</p>
</div>
<h2 id="update-your-application-to-work-with-the-new-scope-format">Update your application to work with the new <code>scope</code> format</h2>
<p>In OpenIddict 3.0, the format of the <code>scope</code> claim used in JWT tokens has changed from a JSON array to a single space-separated claim to match
<a href="https://tools.ietf.org/html/draft-ietf-oauth-access-token-jwt-12">the JWT access token specification</a>. To ensure your authorization policies
<p>In OpenIddict 3.0, the format of the <code>scope</code> claim used in JWT tokens has changed from a JSON array to a single space-separated claim
to match <a href="https://datatracker.ietf.org/doc/html/rfc9068">the JWT access token specification</a>. To ensure your authorization policies
still work after migrating, consider using the <code>principal.HasScope()</code> extension to determine whether a scope has been granted:</p>
<pre><code class="lang-csharp">services.AddAuthorization(options =&gt;
{

View File

@ -105,7 +105,7 @@
"output": {
".html": {
"relative_path": "configuration/token-formats.html",
"hash": "kKKB/bq+zY47RG15gV/54Q=="
"hash": "E/z2+ZAMrxmqPew0vaieOA=="
}
},
"is_incremental": false,
@ -1636,7 +1636,7 @@
"output": {
".html": {
"relative_path": "guide/migration/20-to-30.html",
"hash": "Lvq7AtE3jy6vMeLi1d/Brg=="
"hash": "p7hypGLak9vuHZJVhpeL2g=="
}
},
"is_incremental": false,
@ -1701,10 +1701,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/images/ASP-NET-Banners-01.png",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/images/ASP-NET-Banners-01.png",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/images/ASP-NET-Banners-01.png"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/images/ASP-NET-Banners-01.png"
}
},
"is_incremental": false,
@ -1712,10 +1712,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/images/ASP-NET-Banners-02.png",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/images/ASP-NET-Banners-02.png",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/images/ASP-NET-Banners-02.png"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/images/ASP-NET-Banners-02.png"
}
},
"is_incremental": false,
@ -1723,10 +1723,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/images/Banner-01-Azure.png",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/images/Banner-01-Azure.png",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/images/Banner-01-Azure.png"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/images/Banner-01-Azure.png"
}
},
"is_incremental": false,
@ -1734,10 +1734,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/images/Banner-02-VS.png",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/images/Banner-02-VS.png",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/images/Banner-02-VS.png"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/images/Banner-02-VS.png"
}
},
"is_incremental": false,
@ -1745,10 +1745,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png"
}
},
"is_incremental": false,
@ -1756,10 +1756,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png"
}
},
"is_incremental": false,
@ -1767,10 +1767,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png"
}
},
"is_incremental": false,
@ -1778,10 +1778,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png"
}
},
"is_incremental": false,
@ -1789,10 +1789,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/assets/ico/favicon.png",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/assets/ico/favicon.png",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/assets/ico/favicon.png"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/assets/ico/favicon.png"
}
},
"is_incremental": false,
@ -1800,10 +1800,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/carousel.jpg",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/carousel.jpg",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/carousel.jpg"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/carousel.jpg"
}
},
"is_incremental": false,
@ -1811,10 +1811,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/grid.jpg",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/grid.jpg",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/grid.jpg"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/grid.jpg"
}
},
"is_incremental": false,
@ -1822,10 +1822,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/jumbotron-narrow.jpg",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/jumbotron-narrow.jpg",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/jumbotron-narrow.jpg"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/jumbotron-narrow.jpg"
}
},
"is_incremental": false,
@ -1833,10 +1833,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/jumbotron.jpg",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/jumbotron.jpg",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/jumbotron.jpg"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/jumbotron.jpg"
}
},
"is_incremental": false,
@ -1844,10 +1844,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/justified-nav.jpg",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/justified-nav.jpg",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/justified-nav.jpg"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/justified-nav.jpg"
}
},
"is_incremental": false,
@ -1855,10 +1855,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/navbar-fixed.jpg",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/navbar-fixed.jpg",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/navbar-fixed.jpg"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/navbar-fixed.jpg"
}
},
"is_incremental": false,
@ -1866,10 +1866,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/navbar-static.jpg",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/navbar-static.jpg",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/navbar-static.jpg"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/navbar-static.jpg"
}
},
"is_incremental": false,
@ -1877,10 +1877,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/navbar.jpg",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/navbar.jpg",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/navbar.jpg"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/navbar.jpg"
}
},
"is_incremental": false,
@ -1888,10 +1888,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/non-responsive.jpg",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/non-responsive.jpg",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/non-responsive.jpg"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/non-responsive.jpg"
}
},
"is_incremental": false,
@ -1899,10 +1899,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/offcanvas.jpg",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/offcanvas.jpg",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/offcanvas.jpg"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/offcanvas.jpg"
}
},
"is_incremental": false,
@ -1910,10 +1910,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/sign-in.jpg",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/sign-in.jpg",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/sign-in.jpg"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/sign-in.jpg"
}
},
"is_incremental": false,
@ -1921,10 +1921,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/starter-template.jpg",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/starter-template.jpg",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/starter-template.jpg"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/starter-template.jpg"
}
},
"is_incremental": false,
@ -1932,10 +1932,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/sticky-footer-navbar.jpg",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/sticky-footer-navbar.jpg",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/sticky-footer-navbar.jpg"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/sticky-footer-navbar.jpg"
}
},
"is_incremental": false,
@ -1943,10 +1943,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/sticky-footer.jpg",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/sticky-footer.jpg",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/sticky-footer.jpg"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/sticky-footer.jpg"
}
},
"is_incremental": false,
@ -1954,10 +1954,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/theme.jpg",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/theme.jpg",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/theme.jpg"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/bootstrap/examples/screenshots/theme.jpg"
}
},
"is_incremental": false,
@ -1965,10 +1965,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/captcha/images/button.png",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/captcha/images/button.png",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/captcha/images/button.png"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/captcha/images/button.png"
}
},
"is_incremental": false,
@ -1976,10 +1976,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/images/bg.gif",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/images/bg.gif",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/images/bg.gif"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/images/bg.gif"
}
},
"is_incremental": false,
@ -1987,10 +1987,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/images/checked.gif",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/images/checked.gif",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/images/checked.gif"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/images/checked.gif"
}
},
"is_incremental": false,
@ -1998,10 +1998,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/images/cmxform-divider.gif",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/images/cmxform-divider.gif",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/images/cmxform-divider.gif"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/images/cmxform-divider.gif"
}
},
"is_incremental": false,
@ -2009,10 +2009,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/images/cmxform-fieldset.gif",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/images/cmxform-fieldset.gif",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/images/cmxform-fieldset.gif"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/images/cmxform-fieldset.gif"
}
},
"is_incremental": false,
@ -2020,10 +2020,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/images/loading.gif",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/images/loading.gif",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/images/loading.gif"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/images/loading.gif"
}
},
"is_incremental": false,
@ -2031,10 +2031,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/images/unchecked.gif",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/images/unchecked.gif",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/images/unchecked.gif"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/images/unchecked.gif"
}
},
"is_incremental": false,
@ -2042,10 +2042,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/login/images/bg.gif",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/login/images/bg.gif",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/login/images/bg.gif"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/login/images/bg.gif"
}
},
"is_incremental": false,
@ -2053,10 +2053,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/login/images/header1.jpg",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/login/images/header1.jpg",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/login/images/header1.jpg"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/login/images/header1.jpg"
}
},
"is_incremental": false,
@ -2064,10 +2064,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/login/images/page.gif",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/login/images/page.gif",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/login/images/page.gif"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/login/images/page.gif"
}
},
"is_incremental": false,
@ -2075,10 +2075,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/login/images/required_star.gif",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/login/images/required_star.gif",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/login/images/required_star.gif"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/login/images/required_star.gif"
}
},
"is_incremental": false,
@ -2086,10 +2086,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/backRequiredGray.gif",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/backRequiredGray.gif",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/backRequiredGray.gif"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/backRequiredGray.gif"
}
},
"is_incremental": false,
@ -2097,10 +2097,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/back_green-fade.gif",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/back_green-fade.gif",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/back_green-fade.gif"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/back_green-fade.gif"
}
},
"is_incremental": false,
@ -2108,10 +2108,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/back_nav_blue.gif",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/back_nav_blue.gif",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/back_nav_blue.gif"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/back_nav_blue.gif"
}
},
"is_incremental": false,
@ -2119,10 +2119,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/blank.gif",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/blank.gif",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/blank.gif"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/blank.gif"
}
},
"is_incremental": false,
@ -2130,10 +2130,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/button-submit.gif",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/button-submit.gif",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/button-submit.gif"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/button-submit.gif"
}
},
"is_incremental": false,
@ -2141,10 +2141,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/help.png",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/help.png",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/help.png"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/help.png"
}
},
"is_incremental": false,
@ -2152,10 +2152,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/left-nav-callout-long.png",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/left-nav-callout-long.png",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/left-nav-callout-long.png"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/left-nav-callout-long.png"
}
},
"is_incremental": false,
@ -2163,10 +2163,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/login-sprite.gif",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/login-sprite.gif",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/login-sprite.gif"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/login-sprite.gif"
}
},
"is_incremental": false,
@ -2174,10 +2174,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/logo_marketo.gif",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/logo_marketo.gif",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/logo_marketo.gif"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/logo_marketo.gif"
}
},
"is_incremental": false,
@ -2185,10 +2185,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/sf.png",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/sf.png",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/sf.png"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/sf.png"
}
},
"is_incremental": false,
@ -2196,10 +2196,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/step1-24.gif",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/step1-24.gif",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/step1-24.gif"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/step1-24.gif"
}
},
"is_incremental": false,
@ -2207,10 +2207,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/step2-24.gif",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/step2-24.gif",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/step2-24.gif"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/step2-24.gif"
}
},
"is_incremental": false,
@ -2218,10 +2218,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/step3-24.gif",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/step3-24.gif",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/step3-24.gif"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/step3-24.gif"
}
},
"is_incremental": false,
@ -2229,10 +2229,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/tab-sprite.gif",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/tab-sprite.gif",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/tab-sprite.gif"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/tab-sprite.gif"
}
},
"is_incremental": false,
@ -2240,10 +2240,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/tab_green.gif",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/tab_green.gif",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/tab_green.gif"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/tab_green.gif"
}
},
"is_incremental": false,
@ -2251,10 +2251,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/time.png",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/time.png",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/time.png"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/time.png"
}
},
"is_incremental": false,
@ -2262,10 +2262,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/toggle.gif",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/toggle.gif",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/toggle.gif"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/toggle.gif"
}
},
"is_incremental": false,
@ -2273,10 +2273,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/warning.gif",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/warning.gif",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/warning.gif"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/marketo/images/warning.gif"
}
},
"is_incremental": false,
@ -2284,10 +2284,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/milk/bg.gif",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/milk/bg.gif",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/milk/bg.gif"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/milk/bg.gif"
}
},
"is_incremental": false,
@ -2295,10 +2295,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/milk/left_white.png",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/milk/left_white.png",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/milk/left_white.png"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/milk/left_white.png"
}
},
"is_incremental": false,
@ -2306,10 +2306,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/milk/milk.png",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/milk/milk.png",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/milk/milk.png"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/milk/milk.png"
}
},
"is_incremental": false,
@ -2317,10 +2317,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/milk/right_white.png",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/milk/right_white.png",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/milk/right_white.png"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/milk/right_white.png"
}
},
"is_incremental": false,
@ -2328,10 +2328,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/tinymce/themes/simple/img/icons.gif",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/tinymce/themes/simple/img/icons.gif",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/demo/tinymce/themes/simple/img/icons.gif"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/demo/tinymce/themes/simple/img/icons.gif"
}
},
"is_incremental": false,
@ -2339,10 +2339,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/test/firebug/errorIcon.png",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/test/firebug/errorIcon.png",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/test/firebug/errorIcon.png"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/test/firebug/errorIcon.png"
}
},
"is_incremental": false,
@ -2350,10 +2350,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/test/firebug/infoIcon.png",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/test/firebug/infoIcon.png",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/test/firebug/infoIcon.png"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/test/firebug/infoIcon.png"
}
},
"is_incremental": false,
@ -2361,10 +2361,10 @@
},
{
"type": "Resource",
"source_relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/test/firebug/warningIcon.png",
"source_relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/test/firebug/warningIcon.png",
"output": {
"resource": {
"relative_path": "submodules/openiddict-core/samples/Mvc.Server/wwwroot/lib/jquery-validation/test/firebug/warningIcon.png"
"relative_path": "submodules/openiddict-core/sandbox/Mvc.Server/wwwroot/lib/jquery-validation/test/firebug/warningIcon.png"
}
},
"is_incremental": false,