Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add net5.0 to smoke tests. Fix dependency issues. #18696

Merged
merged 3 commits into from
Feb 11, 2021
Merged
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
12 changes: 6 additions & 6 deletions common/SmokeTests/SmokeTest/SmokeTest.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>netcoreapp2.1;net461</TargetFrameworks>
<TargetFrameworks>netcoreapp2.1;net461;net5.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<StartupObject>SmokeTest.Program</StartupObject>
</PropertyGroup>
Expand All @@ -10,13 +10,13 @@
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Core" Version="1.8.0" />
<!-- Add an OverrideDailyVersion attribute to prevent the Update-Dependencies script from overwriting it with a daily build version -->
<PackageReference Include="Azure.Core" Version="1.9.0" />
<PackageReference Include="Azure.Identity" Version="1.4.0-beta.1" />
<!-- The OverrideDailyVersion attribute prevents the Update-Dependencies script from overwriting it with a daily build version -->
<PackageReference Include="Azure.Messaging.EventHubs" Version="5.3.0-beta.4" OverrideDailyVersion="" />
<PackageReference Include="Azure.Messaging.EventHubs.Processor" Version="5.3.0-beta.4" />
<PackageReference Include="Azure.Messaging.EventHubs" Version="5.3.0" />
<PackageReference Include="Azure.Messaging.EventHubs.Processor" Version="5.3.0" />
<PackageReference Include="Azure.Security.Keyvault.Secrets" Version="4.2.0-beta.3" />
<PackageReference Include="Azure.Storage.Blobs" Version="12.8.0-beta.1" />
<PackageReference Include="Azure.Storage.Blobs" Version="12.8.0" />
<PackageReference Include="Microsoft.Azure.Amqp" Version="2.4.9" />
<PackageReference Include="Microsoft.Azure.Devices" Version="1.20.1" />
<PackageReference Include="Microsoft.Azure.DocumentDB.Core" Version="2.10.0" />
Expand Down