Integrate new user-jwts tool into installer (#13895) (#13913)

This commit is contained in:
Safia Abdalla 2022-06-07 15:20:07 -07:00 committed by GitHub
parent d560c613b1
commit 116a6a8bc5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 0 deletions

View file

@ -73,6 +73,10 @@
<Uri>https://github.com/dotnet/aspnetcore</Uri>
<Sha>154d0530fb24e142c22b5b737e881f1b7c0c65d3</Sha>
</Dependency>
<Dependency Name="dotnet-user-jwts" Version="7.0.0-preview.6.22306.7" CoherentParentDependency="Microsoft.NET.Sdk">
<Uri>https://github.com/dotnet/aspnetcore</Uri>
<Sha>154d0530fb24e142c22b5b737e881f1b7c0c65d3</Sha>
</Dependency>
<Dependency Name="dotnet-user-secrets" Version="7.0.0-preview.6.22306.7" CoherentParentDependency="Microsoft.NET.Sdk">
<Uri>https://github.com/dotnet/aspnetcore</Uri>
<Sha>154d0530fb24e142c22b5b737e881f1b7c0c65d3</Sha>

View file

@ -57,6 +57,7 @@
<MicrosoftAspNetCoreAppRefInternalPackageVersion>7.0.0-preview.6.22306.7</MicrosoftAspNetCoreAppRefInternalPackageVersion>
<VSRedistCommonAspNetCoreSharedFrameworkx6470PackageVersion>7.0.0-preview.6.22306.7</VSRedistCommonAspNetCoreSharedFrameworkx6470PackageVersion>
<dotnetdevcertsPackageVersion>7.0.0-preview.6.22306.7</dotnetdevcertsPackageVersion>
<dotnetuserjwtsPackageVersion>7.0.0-preview.6.22306.7</dotnetuserjwtsPackageVersion>
<dotnetusersecretsPackageVersion>7.0.0-preview.6.22306.7</dotnetusersecretsPackageVersion>
</PropertyGroup>
<PropertyGroup>

View file

@ -85,6 +85,7 @@
Unable to find package dotnet-ef.
Unable to find package dotnet-sql-cache.
Unable to find package dotnet-user-secrets.
Unable to find package dotnet-user-jwts.
Unable to find package dotnet-watch. -->
<EnvironmentVariables Include="CLIBUILD_SKIP_BUNDLEDDOTNETTOOLS=true" />
</ItemGroup>

View file

@ -1,6 +1,7 @@
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Condition=" '$(IncludeAspNetCoreRuntime)' != 'false' ">
<BundledDotnetTool Include="dotnet-dev-certs" Version="$(DotnetDevCertsPackageVersion)" />
<BundledDotnetTool Include="dotnet-user-jwts" Version="$(DotnetUserJwtsPackageVersion)" />
<BundledDotnetTool Include="dotnet-user-secrets" Version="$(DotnetUserSecretsPackageVersion)" ObsoletesCliTool="Microsoft.Extensions.SecretManager.Tools" />
</ItemGroup>