Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/AdoPat.Test/AdoPat.Test.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<IsPackable>false</IsPackable>
Expand Down
4 changes: 3 additions & 1 deletion src/AdoPat/AdoPat.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
<AdditionalFiles Include="..\stylecop\stylecop.json" Link="stylecop.json" />
<Compile Include="..\stylecop\GlobalSuppressions.cs" Link="GlobalSuppressions.cs" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.2" />
<PackageReference Include="Microsoft.Identity.Client.Extensions.Msal" Version="4.65.0" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.82.1" />
<PackageReference Include="Microsoft.Identity.Client.Broker" Version="4.82.1" />
<PackageReference Include="Microsoft.Identity.Client.Extensions.Msal" Version="4.82.1" />
<PackageReference Include="Microsoft.VisualStudio.Services.Client" Version="19.239.0-preview" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.6" />
<!-- Transitive dependencies of Microsoft.VisualStudio.Services.Client temporarily pinned for security reasons. -->
Expand Down
5 changes: 4 additions & 1 deletion src/AzureAuth/AzureAuth.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Condition="$([MSBuild]::IsOSPlatform('Windows'))">
<DefineConstants>PlatformWindows</DefineConstants>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
Expand Down Expand Up @@ -26,6 +26,9 @@
<Compile Include="..\stylecop\GlobalSuppressions.cs" Link="GlobalSuppressions.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Identity.Client" Version="4.82.1" />
<PackageReference Include="Microsoft.Identity.Client.Broker" Version="4.82.1" />
<PackageReference Include="Microsoft.Identity.Client.Extensions.Msal" Version="4.82.1" />
<PackageReference Include="Microsoft.Office.Lasso" Version="2024.10.23.1" />
<PackageReference Include="Tomlyn" Version="0.11.0" />
</ItemGroup>
Expand Down
1 change: 0 additions & 1 deletion src/AzureAuth/Commands/Ado/Pat/CommandScopes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ namespace Microsoft.Authentication.AzureAuth.Commands.Ado.Pat
{
/// <summary>
/// Command to print the list of available scopes

/// </summary>
[Command("scopes", Description = "List the valid ado pat scopes")]
public class CommandScopes
Expand Down
1 change: 0 additions & 1 deletion src/AzureAuth/IEnvExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ public static bool InteractiveAuthDisabled(this IEnv env)
/// Get the auth modes from the environment or set the default.
/// </summary>
/// <param name="env">The <see cref="IEnv"/> to use.</param>
/// <param name="eventData">Event data to add the auth mode to.</param>
/// <returns>AuthModes.</returns>
public static IEnumerable<AuthMode> ReadAuthModeFromEnvOrSetDefault(this IEnv env)
{
Expand Down
6 changes: 4 additions & 2 deletions src/MSALWrapper.Benchmark/MSALWrapper.Benchmark.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Condition="$([MSBuild]::IsOSPlatform('Windows'))">
<TargetFramework>net8.0</TargetFramework>
<DefineConstants>PlatformWindows</DefineConstants>
Expand All @@ -18,7 +18,9 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.2" />
<PackageReference Include="Microsoft.Identity.Client.Broker" Version="4.65.0" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.82.1" />
<PackageReference Include="Microsoft.Identity.Client.Broker" Version="4.82.1" />
<PackageReference Include="Microsoft.Identity.Client.Extensions.Msal" Version="4.82.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MSALWrapper\MSALWrapper.csproj" />
Expand Down
6 changes: 3 additions & 3 deletions src/MSALWrapper/MSALWrapper.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.2" />
<PackageReference Include="Microsoft.Identity.Client.Extensions.Msal" Version="4.65.0" />
<PackageReference Include="Microsoft.Identity.Client.Extensions.Msal" Version="4.82.1" />
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="7.5.0" />
<PackageReference Include="Microsoft.Identity.Client.Broker" Version="4.65.0" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.65.0" />
<PackageReference Include="Microsoft.Identity.Client.Broker" Version="4.82.1" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.82.1" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion src/TestHelper/TestHelper.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
Expand Down
Loading