Skip to content

Commit

Permalink
Merge pull request #70 from Bandwidth/DX-2789
Browse files Browse the repository at this point in the history
DX-2789 Update `Microsoft.NET.Test.Sdk`
  • Loading branch information
ajrice6713 authored Jan 19, 2023
2 parents 06e4050 + 48e414c commit 475b1f6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Test
on:
schedule:
- cron: '0 4 * * *'
- cron: "0 4 * * *"
pull_request:
workflow_dispatch:

Expand All @@ -11,8 +11,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2022, windows-2019, ubuntu-18.04, ubuntu-20.04]
dotnet: [3.1.x, 5.0.x]
os: [windows-2022, windows-2019, ubuntu-20.04, ubuntu-22.04]
dotnet: [6.0.x, 7.0.x]
steps:
- name: Checkout repo
uses: actions/checkout@v2
Expand Down
36 changes: 18 additions & 18 deletions Bandwidth.Iris.Tests/Bandwidth.Iris.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework Condition="'$(DOTNET)' == '3.1.x' Or '$(DOTNET)' == ''">netcoreapp3.1</TargetFramework>
<TargetFramework Condition="'$(DOTNET)' == '5.0.x'">net5.0</TargetFramework>
<TargetFramework Condition="'$(DOTNET)' == '6.0.x' Or '$(DOTNET)' == ''">net6.0</TargetFramework>
<TargetFramework Condition="'$(DOTNET)' == '7.0.x'">net7.0</TargetFramework>

<IsPackable>false</IsPackable>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<IsPackable>false</IsPackable>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="1.3.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<None Update="xunit.runner.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="1.3.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<None Update="xunit.runner.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Bandwidth.Iris\Bandwidth.Iris.csproj" />
<ProjectReference Include="..\Bandwidth.Iris\Bandwidth.Iris.csproj" />
</ItemGroup>
</Project>

0 comments on commit 475b1f6

Please sign in to comment.