-
Notifications
You must be signed in to change notification settings - Fork 258
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into topic/refactor-test-projects
# Conflicts: # .github/workflows/ci.yml
- Loading branch information
Showing
5 changed files
with
50 additions
and
55 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
24 changes: 11 additions & 13 deletions
24
src/System.IO.Abstractions.TestingHelpers/System.IO.Abstractions.TestingHelpers.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,15 +1,13 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<AssemblyName>System.IO.Abstractions.TestingHelpers</AssemblyName> | ||
<RootNamespace>System.IO.Abstractions.TestingHelpers</RootNamespace> | ||
<Description>A set of pre-built mocks to help when testing file system interactions.</Description> | ||
<TargetFrameworks>net9.0;net8.0;net6.0;netstandard2.1;netstandard2.0;net472</TargetFrameworks> | ||
<PackageIcon>icon_256x256.png</PackageIcon> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\TestableIO.System.IO.Abstractions.TestingHelpers\TestableIO.System.IO.Abstractions.TestingHelpers.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="..\..\images\icon_256x256.png" Pack="true" PackagePath="\" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<AssemblyName>System.IO.Abstractions.TestingHelpers</AssemblyName> | ||
<RootNamespace>System.IO.Abstractions.TestingHelpers</RootNamespace> | ||
<Description>A set of pre-built mocks to help when testing file system interactions.</Description> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\TestableIO.System.IO.Abstractions.TestingHelpers\TestableIO.System.IO.Abstractions.TestingHelpers.csproj"/> | ||
</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,14 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<AssemblyName>System.IO.Abstractions</AssemblyName> | ||
<RootNamespace>System.IO.Abstractions</RootNamespace> | ||
<Description>A set of abstractions to help make file system interactions testable.</Description> | ||
<TargetFrameworks>net8.0;net6.0;netstandard2.1;netstandard2.0;net472</TargetFrameworks> | ||
<PackageIcon>icon_256x256.png</PackageIcon> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\TestableIO.System.IO.Abstractions\TestableIO.System.IO.Abstractions.csproj" /> | ||
<ProjectReference Include="..\TestableIO.System.IO.Abstractions.Wrappers\TestableIO.System.IO.Abstractions.Wrappers.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="..\..\images\icon_256x256.png" Pack="true" PackagePath="\" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<AssemblyName>System.IO.Abstractions</AssemblyName> | ||
<RootNamespace>System.IO.Abstractions</RootNamespace> | ||
<Description>A set of abstractions to help make file system interactions testable.</Description> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\TestableIO.System.IO.Abstractions\TestableIO.System.IO.Abstractions.csproj"/> | ||
<ProjectReference Include="..\TestableIO.System.IO.Abstractions.Wrappers\TestableIO.System.IO.Abstractions.Wrappers.csproj"/> | ||
</ItemGroup> | ||
|
||
</Project> |
38 changes: 18 additions & 20 deletions
38
src/TestableIO.System.IO.Abstractions/TestableIO.System.IO.Abstractions.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,21 +1,19 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<AssemblyName>TestableIO.System.IO.Abstractions</AssemblyName> | ||
<RootNamespace>System.IO.Abstractions</RootNamespace> | ||
<Description>A set of abstractions to help make file system interactions testable.</Description> | ||
<TargetFrameworks>net9.0;net8.0;net6.0;netstandard2.1;netstandard2.0;net472</TargetFrameworks> | ||
<PackageIcon>icon_256x256.png</PackageIcon> | ||
<Nullable>enable</Nullable> | ||
<LangVersion>preview</LangVersion> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Nullable"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Testably.Abstractions.FileSystem.Interface" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="..\..\images\icon_256x256.png" Pack="true" PackagePath="\" /> | ||
</ItemGroup> | ||
</Project> | ||
|
||
<PropertyGroup> | ||
<AssemblyName>TestableIO.System.IO.Abstractions</AssemblyName> | ||
<RootNamespace>System.IO.Abstractions</RootNamespace> | ||
<Description>A set of abstractions to help make file system interactions testable.</Description> | ||
<Nullable>enable</Nullable> | ||
<LangVersion>preview</LangVersion> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Nullable"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Testably.Abstractions.FileSystem.Interface"/> | ||
</ItemGroup> | ||
|
||
</Project> |