-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump the xunit group in /src with 4 updates
Bumps the xunit group in /src with 4 updates: [xunit.core](https://github.com/xunit/xunit), [xunit](https://github.com/xunit/xunit), xunit.analyzers and xunit.assert. Updates `xunit.core` from 2.6.2 to 2.7.0 - [Commits](xunit/xunit@2.6.2...2.7.0) Updates `xunit` from 2.6.2 to 2.7.0 - [Commits](xunit/xunit@2.6.2...2.7.0) Updates `xunit.analyzers` from 1.6.0 to 1.11.0 Updates `xunit.assert` from 2.6.2 to 2.7.0 --- updated-dependencies: - dependency-name: xunit.core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: xunit - dependency-name: xunit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: xunit - dependency-name: xunit.analyzers dependency-type: direct:production update-type: version-update:semver-minor dependency-group: xunit - dependency-name: xunit.assert dependency-type: direct:production update-type: version-update:semver-minor dependency-group: xunit ... Signed-off-by: dependabot[bot] <[email protected]>
- Loading branch information
1 parent
8066d17
commit 3554cca
Showing
8 changed files
with
259 additions
and
259 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
218 changes: 109 additions & 109 deletions
218
...vity.AutoFixture.XUnit2.AutoMoq.Tests/Objectivity.AutoFixture.XUnit2.AutoMoq.Tests.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,110 +1,110 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net7.0</TargetFrameworks> | ||
<TargetFrameworks Condition="'$(OS)'=='Windows_NT'">$(TargetFrameworks);net472;net48</TargetFrameworks> | ||
<IsPackable>false</IsPackable> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<CodeAnalysisTreatWarningsAsErrors>true</CodeAnalysisTreatWarningsAsErrors> | ||
<AnalysisLevel>latest</AnalysisLevel> | ||
<AnalysisMode>All</AnalysisMode> | ||
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild> | ||
<LangVersion>latest</LangVersion> | ||
<IsTestProject>true</IsTestProject> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<SignAssembly>true</SignAssembly> | ||
<!-- Sign assembly with public & private key only on a build server with a defined key, otherwise delay signing. --> | ||
<DelaySign Condition="'$(CI)'=='' OR '$(StrongNameKey)'==''">true</DelaySign> | ||
<!-- Set StrongNameKeyPath to a default value when not defined by a build server. --> | ||
<StrongNameKeyPath Condition="'$(StrongNameKeyPath)'==''">..\public.snk</StrongNameKeyPath> | ||
<AssemblyOriginatorKeyFile>$(StrongNameKeyPath)</AssemblyOriginatorKeyFile> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<!-- | ||
Make sure any documentation comments which are included in code get checked for syntax during the build, but do | ||
not report warnings for missing comments. | ||
CS1573: Parameter 'parameter' has no matching param tag in the XML comment for 'parameter' (but other parameters do) | ||
CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' | ||
CS1712: Type parameter 'type_parameter' has no matching typeparam tag in the XML comment on 'type_or_member' (but other type parameters do) | ||
--> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<NoWarn>$(NoWarn),1573,1591,1712</NoWarn> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Condition="$(TargetFramework.Contains('net4'))"> | ||
<Reference Include="System" /> | ||
<Reference Include="System.ComponentModel.DataAnnotations" /> | ||
<Reference Include="System.Configuration" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.Net.Http" /> | ||
<Reference Include="System.Xml" /> | ||
<Reference Include="System.Xml.Linq" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\public.snk" Link="public.snk" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="AutoFixture" Version="4.18.0" /> | ||
<PackageReference Include="AutoFixture.AutoMoq" Version="4.18.0" /> | ||
<PackageReference Include="AutoFixture.Xunit2" Version="4.18.0" /> | ||
<PackageReference Include="Castle.Core" Version="5.1.1" /> | ||
<PackageReference Include="coverlet.msbuild" Version="6.0.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="FluentAssertions" Version="6.12.0" /> | ||
<PackageReference Include="JetBrains.Annotations" Version="2023.3.0" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="8.0.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" /> | ||
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Moq" Version="4.18.4" /> | ||
<PackageReference Include="Roslynator.Analyzers" Version="4.6.4"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Roslynator.Formatting.Analyzers" Version="4.6.4"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="SonarAnalyzer.CSharp" Version="9.12.0.78982"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="xunit" Version="2.6.2" /> | ||
<PackageReference Include="xunit.abstractions" Version="2.0.3" /> | ||
<PackageReference Include="xunit.analyzers" Version="1.6.0" /> | ||
<PackageReference Include="xunit.assert" Version="2.6.2" /> | ||
<PackageReference Include="xunit.core" Version="2.6.2" /> | ||
<PackageReference Include="xunit.extensibility.core" Version="2.6.2" /> | ||
<PackageReference Include="xunit.extensibility.execution" Version="2.6.2" /> | ||
<PackageReference Include="xunit.runner.console" Version="2.6.2"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.4"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Objectivity.AutoFixture.XUnit2.AutoMoq\Objectivity.AutoFixture.XUnit2.AutoMoq.csproj" /> | ||
<ProjectReference Include="..\Objectivity.AutoFixture.XUnit2.Core\Objectivity.AutoFixture.XUnit2.Core.csproj" /> | ||
</ItemGroup> | ||
|
||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net7.0</TargetFrameworks> | ||
<TargetFrameworks Condition="'$(OS)'=='Windows_NT'">$(TargetFrameworks);net472;net48</TargetFrameworks> | ||
<IsPackable>false</IsPackable> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<CodeAnalysisTreatWarningsAsErrors>true</CodeAnalysisTreatWarningsAsErrors> | ||
<AnalysisLevel>latest</AnalysisLevel> | ||
<AnalysisMode>All</AnalysisMode> | ||
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild> | ||
<LangVersion>latest</LangVersion> | ||
<IsTestProject>true</IsTestProject> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<SignAssembly>true</SignAssembly> | ||
<!-- Sign assembly with public & private key only on a build server with a defined key, otherwise delay signing. --> | ||
<DelaySign Condition="'$(CI)'=='' OR '$(StrongNameKey)'==''">true</DelaySign> | ||
<!-- Set StrongNameKeyPath to a default value when not defined by a build server. --> | ||
<StrongNameKeyPath Condition="'$(StrongNameKeyPath)'==''">..\public.snk</StrongNameKeyPath> | ||
<AssemblyOriginatorKeyFile>$(StrongNameKeyPath)</AssemblyOriginatorKeyFile> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<!-- | ||
Make sure any documentation comments which are included in code get checked for syntax during the build, but do | ||
not report warnings for missing comments. | ||
CS1573: Parameter 'parameter' has no matching param tag in the XML comment for 'parameter' (but other parameters do) | ||
CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' | ||
CS1712: Type parameter 'type_parameter' has no matching typeparam tag in the XML comment on 'type_or_member' (but other type parameters do) | ||
--> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<NoWarn>$(NoWarn),1573,1591,1712</NoWarn> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Condition="$(TargetFramework.Contains('net4'))"> | ||
<Reference Include="System" /> | ||
<Reference Include="System.ComponentModel.DataAnnotations" /> | ||
<Reference Include="System.Configuration" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.Net.Http" /> | ||
<Reference Include="System.Xml" /> | ||
<Reference Include="System.Xml.Linq" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\public.snk" Link="public.snk" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="AutoFixture" Version="4.18.0" /> | ||
<PackageReference Include="AutoFixture.AutoMoq" Version="4.18.0" /> | ||
<PackageReference Include="AutoFixture.Xunit2" Version="4.18.0" /> | ||
<PackageReference Include="Castle.Core" Version="5.1.1" /> | ||
<PackageReference Include="coverlet.msbuild" Version="6.0.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="FluentAssertions" Version="6.12.0" /> | ||
<PackageReference Include="JetBrains.Annotations" Version="2023.3.0" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="8.0.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" /> | ||
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Moq" Version="4.18.4" /> | ||
<PackageReference Include="Roslynator.Analyzers" Version="4.6.4"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Roslynator.Formatting.Analyzers" Version="4.6.4"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="SonarAnalyzer.CSharp" Version="9.12.0.78982"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="xunit" Version="2.7.0" /> | ||
<PackageReference Include="xunit.abstractions" Version="2.0.3" /> | ||
<PackageReference Include="xunit.analyzers" Version="1.11.0" /> | ||
<PackageReference Include="xunit.assert" Version="2.7.0" /> | ||
<PackageReference Include="xunit.core" Version="2.6.2" /> | ||
<PackageReference Include="xunit.extensibility.core" Version="2.7.0" /> | ||
<PackageReference Include="xunit.extensibility.execution" Version="2.7.0" /> | ||
<PackageReference Include="xunit.runner.console" Version="2.6.2"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.4"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Objectivity.AutoFixture.XUnit2.AutoMoq\Objectivity.AutoFixture.XUnit2.AutoMoq.csproj" /> | ||
<ProjectReference Include="..\Objectivity.AutoFixture.XUnit2.Core\Objectivity.AutoFixture.XUnit2.Core.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.