-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix internals accessibility for tests
- Loading branch information
1 parent
0b97c46
commit 76ad117
Showing
3 changed files
with
53 additions
and
35 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
36 changes: 21 additions & 15 deletions
36
src/BitzArt.ApiExceptions.OpenTelemetry/BitzArt.ApiExceptions.OpenTelemetry.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,22 +1,28 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net6.0;net7.0</TargetFrameworks> | ||
<AssemblyName>BitzArt.ApiExceptions.OpenTelemetry</AssemblyName> | ||
<RootNamespace>BitzArt.ApiExceptions.OpenTelemetry</RootNamespace> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<PropertyGroup> | ||
<TargetFrameworks>net6.0;net7.0</TargetFrameworks> | ||
<AssemblyName>BitzArt.ApiExceptions.OpenTelemetry</AssemblyName> | ||
<RootNamespace>BitzArt.ApiExceptions.OpenTelemetry</RootNamespace> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
|
||
<PackageId>BitzArt.ApiExceptions.OpenTelemetry</PackageId> | ||
<Authors>BitzArt</Authors> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>https://github.com/BitzArt/ApiExceptions</RepositoryUrl> | ||
<PackageId>BitzArt.ApiExceptions.OpenTelemetry</PackageId> | ||
<Authors>BitzArt</Authors> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>https://github.com/BitzArt/ApiExceptions</RepositoryUrl> | ||
|
||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="OpenTelemetry" Version="1.5.1" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="OpenTelemetry" Version="1.5.1" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> | ||
<_Parameter1>BitzArt.ApiExceptions.OpenTelemetry.Tests</_Parameter1> | ||
</AssemblyAttribute> | ||
</ItemGroup> | ||
|
||
</Project> |
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,16 +1,22 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net6.0;net7.0</TargetFrameworks> | ||
<Nullable>enable</Nullable> | ||
<RootNamespace>BitzArt.ApiExceptions</RootNamespace> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<PropertyGroup> | ||
<TargetFrameworks>net6.0;net7.0</TargetFrameworks> | ||
<Nullable>enable</Nullable> | ||
<RootNamespace>BitzArt.ApiExceptions</RootNamespace> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
|
||
<PackageId>BitzArt.ApiExceptions</PackageId> | ||
<Authors>BitzArt</Authors> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>https://github.com/BitzArt/ApiExceptions</RepositoryUrl> | ||
</PropertyGroup> | ||
<PackageId>BitzArt.ApiExceptions</PackageId> | ||
<Authors>BitzArt</Authors> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>https://github.com/BitzArt/ApiExceptions</RepositoryUrl> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> | ||
<_Parameter1>BitzArt.ApiExceptions.Tests</_Parameter1> | ||
</AssemblyAttribute> | ||
</ItemGroup> | ||
|
||
</Project> |