Skip to main content
added 5 characters in body
Source Link
mfluehr
  • 3.2k
  • 2
  • 31
  • 37

starting fromStarting with .NetNET 5, you can use also this syntax in the csproj file of the project being tested:

  <ItemGroup>
    <InternalsVisibleTo Include="MyProject.Tests" />
  </ItemGroup>

starting from .Net 5, you can use also this syntax in the csproj of the project being tested:

  <ItemGroup>
    <InternalsVisibleTo Include="MyProject.Tests" />
  </ItemGroup>

Starting with .NET 5, you can use also this syntax in the csproj file of the project being tested:

  <ItemGroup>
    <InternalsVisibleTo Include="MyProject.Tests" />
  </ItemGroup>
Source Link
ihebiheb
  • 5.4k
  • 4
  • 57
  • 62

starting from .Net 5, you can use also this syntax in the csproj of the project being tested:

  <ItemGroup>
    <InternalsVisibleTo Include="MyProject.Tests" />
  </ItemGroup>