-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump System.Diagnostics.DiagnosticSource from 7.0.0 to 8.0.1 (#128)
Bumps [System.Diagnostics.DiagnosticSource](https://github.com/dotnet/runtime) from 7.0.0 to 8.0.1. - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](dotnet/runtime@v7.0.0...v8.0.1) --- updated-dependencies: - dependency-name: System.Diagnostics.DiagnosticSource dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
f32522f
commit c03d27a
Showing
1 changed file
with
67 additions
and
67 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,67 +1,67 @@ | ||
<Project> | ||
|
||
<PropertyGroup Label="SDK Versions"> | ||
<NetVersion>net8.0</NetVersion> | ||
<NetStandardVersion>netstandard2.0</NetStandardVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Label="Package information"> | ||
<LangVersion>latest</LangVersion> | ||
<NoWarn>$(NoWarn);CS1701;CS1702;CS1591;AD0001;IDE1006;</NoWarn> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Authors>Niels Pilgaard</Authors> | ||
<Copyright>Copyright Niels Pilgaard</Copyright> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<PackageIcon>logo_128x128.png</PackageIcon> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
<MinVerIgnoreHeight>true</MinVerIgnoreHeight> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<DebugType>embedded</DebugType> | ||
<Deterministic>true</Deterministic> | ||
<RepositoryUrl>https://github.com/NielsPilgaard/Pilgaard.BackgroundJobs</RepositoryUrl> | ||
<PackageProjectUrl>https://github.com/NielsPilgaard/Pilgaard.BackgroundJobs</PackageProjectUrl> | ||
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(IsPackable)' == 'true'"> | ||
<IsTrimmable>true</IsTrimmable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Label="Exposing Internals to Test Projects"> | ||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> | ||
<_Parameter1>$(MSBuildProjectName).Tests</_Parameter1> | ||
</AssemblyAttribute> | ||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> | ||
<_Parameter1>$(MSBuildProjectName).Benchmarks</_Parameter1> | ||
</AssemblyAttribute> | ||
</ItemGroup> | ||
|
||
<ItemGroup Label="Shared Files and Packages for Nugets" Condition="'$(IsPackable)' == 'true'"> | ||
<None Include="README.md" Pack="true" PackagePath="" /> | ||
<None Include="../../assets/logo/logo_128x128.png" Pack="true" PackagePath="" /> | ||
<PackageReference Include="MinVer" Version="5.0.0" PrivateAssets="All" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Label="Net Nugets" Condition="'$(TargetFramework)' == '$(NetVersion)'"> | ||
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Label="NetStandard Nugets" Condition="'$(TargetFramework)' == '$(NetStandardVersion)'"> | ||
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="3.1.18" /> | ||
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="3.1.18" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.18" /> | ||
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="7.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Label="Test Projects" Condition="$(MSBuildProjectName.EndsWith('.Tests'))"> | ||
<Compile Include="../ApiApprovalTests.cs" Link="ApiApprovalTests.cs" /> | ||
<Using Include="Xunit" /> | ||
</ItemGroup> | ||
|
||
</Project> | ||
<Project> | ||
|
||
<PropertyGroup Label="SDK Versions"> | ||
<NetVersion>net8.0</NetVersion> | ||
<NetStandardVersion>netstandard2.0</NetStandardVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Label="Package information"> | ||
<LangVersion>latest</LangVersion> | ||
<NoWarn>$(NoWarn);CS1701;CS1702;CS1591;AD0001;IDE1006;</NoWarn> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Authors>Niels Pilgaard</Authors> | ||
<Copyright>Copyright Niels Pilgaard</Copyright> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<PackageIcon>logo_128x128.png</PackageIcon> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
<MinVerIgnoreHeight>true</MinVerIgnoreHeight> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<DebugType>embedded</DebugType> | ||
<Deterministic>true</Deterministic> | ||
<RepositoryUrl>https://github.com/NielsPilgaard/Pilgaard.BackgroundJobs</RepositoryUrl> | ||
<PackageProjectUrl>https://github.com/NielsPilgaard/Pilgaard.BackgroundJobs</PackageProjectUrl> | ||
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(IsPackable)' == 'true'"> | ||
<IsTrimmable>true</IsTrimmable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Label="Exposing Internals to Test Projects"> | ||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> | ||
<_Parameter1>$(MSBuildProjectName).Tests</_Parameter1> | ||
</AssemblyAttribute> | ||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> | ||
<_Parameter1>$(MSBuildProjectName).Benchmarks</_Parameter1> | ||
</AssemblyAttribute> | ||
</ItemGroup> | ||
|
||
<ItemGroup Label="Shared Files and Packages for Nugets" Condition="'$(IsPackable)' == 'true'"> | ||
<None Include="README.md" Pack="true" PackagePath="" /> | ||
<None Include="../../assets/logo/logo_128x128.png" Pack="true" PackagePath="" /> | ||
<PackageReference Include="MinVer" Version="5.0.0" PrivateAssets="All" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Label="Net Nugets" Condition="'$(TargetFramework)' == '$(NetVersion)'"> | ||
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Label="NetStandard Nugets" Condition="'$(TargetFramework)' == '$(NetStandardVersion)'"> | ||
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="3.1.18" /> | ||
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="3.1.18" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.18" /> | ||
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="8.0.1" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Label="Test Projects" Condition="$(MSBuildProjectName.EndsWith('.Tests'))"> | ||
<Compile Include="../ApiApprovalTests.cs" Link="ApiApprovalTests.cs" /> | ||
<Using Include="Xunit" /> | ||
</ItemGroup> | ||
|
||
</Project> |