Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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: 3 additions & 9 deletions build/install-dotnet.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@
steps:
# Some tests rely on 6.0.412 existing
# Our tests target net8.0
- task: UseDotNet@2
displayName: 'Install .NET6 SDK'
displayName: 'Install .NET8 SDK'
inputs:
packageType: 'sdk'
version: "6.x"

- task: UseDotNet@2
displayName: 'Install .NET7 SDK'
inputs:
packageType: 'sdk'
version: "7.x"
version: "8.x"

# The SDK we use to build
- task: UseDotNet@2
Expand Down
6 changes: 0 additions & 6 deletions host/src/FunctionsNetHost/global.json

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<IsPackable>false</IsPackable>
<AssemblyName>Microsoft.Azure.Functions.Worker.ApplicationInsights.Tests</AssemblyName>
<RootNamespace>Microsoft.Azure.Functions.Worker.ApplicationInsights.Tests</RootNamespace>
Expand All @@ -20,10 +20,7 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
<PackageReference Include="Moq" Version="4.16.1" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
</ItemGroup>

</Project>
Loading