Skip to content

Commit

Permalink
chore(tests): Added workaround for developer machines, to run only do…
Browse files Browse the repository at this point in the history
…tnet8 tests
  • Loading branch information
samtrion committed Sep 27, 2023
1 parent 75cadd4 commit 5cafbe8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -356,4 +356,9 @@ MigrationBackup/

# Ionide (cross platform F# VS Code tools) working folder
.ionide/

# Local configurations for Visual Studio / MSBuild
Local.props
Local.*.props
Local.targets
Local.*.targets
1 change: 1 addition & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<PropertyGroup Label="General settings for all projects">
<_ProjectTargetFrameworks>net6.0;net7.0;net8.0</_ProjectTargetFrameworks>
<_TestTargetFrameworks>net6.0;net7.0;net8.0</_TestTargetFrameworks>
<_TestTargetFrameworks Condition=" Exists('$(MSBuildThisFileDirectory)Local.props') ">net8.0</_TestTargetFrameworks>
</PropertyGroup>

<PropertyGroup Label="Settings for non test projects" Condition=" !$(IsTestableProject) ">
Expand Down
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<Project>
<Import Project="$(DirEngineeringSettings)sln.packages.props" />
<Import Project="$(MSBuildThisFileDirectory)Local.packages.props" Condition=" Exists('$(MSBuildThisFileDirectory)Local.packages.props') " />
<ItemGroup>
<GlobalPackageReference Include="CSharpier.MSBuild" Version="0.25.0" />
<GlobalPackageReference Include="GitVersion.MsBuild" Version="5.12.0" />
<GlobalPackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="3.3.4" />
<GlobalPackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="7.0.4" />
<GlobalPackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" />
<GlobalPackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.7.30" />
<GlobalPackageReference Include="SonarAnalyzer.CSharp" Version="9.11.0.78383" Condition=" Exists('$(MSBuildThisFileDirectory)Local.props') " />
</ItemGroup>
<ItemGroup>
<PackageVersion Include="Azure.Data.Tables" Version="12.8.1" />
Expand Down

0 comments on commit 5cafbe8

Please sign in to comment.