Skip to content

Commit

Permalink
Projects created
Browse files Browse the repository at this point in the history
  • Loading branch information
rainersigwald committed May 16, 2022
1 parent 0e96a2f commit 9c747b4
Show file tree
Hide file tree
Showing 11 changed files with 327 additions and 23 deletions.
236 changes: 213 additions & 23 deletions .gitignore

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<Project>
<ItemGroup>
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
<PackageVersion Include="MSTest.TestAdapter" Version="2.2.8" />
<PackageVersion Include="MSTest.TestFramework" Version="2.2.8" />
<PackageVersion Include="coverlet.collector" Version="3.1.2" />
</ItemGroup>
</Project>
34 changes: 34 additions & 0 deletions System.Containers.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30114.105
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "System.Containers", "System.Containers\System.Containers.csproj", "{A85F5917-A1F5-43D2-BDDC-CAE179B15DDE}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test.System.Containers", "Test.System.Containers\Test.System.Containers.csproj", "{E6EE341A-E10A-423C-B3D8-FEEA0942CFA8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test.System.Containers.Filesystem", "Test.System.Containers.Filesystem\Test.System.Containers.Filesystem.csproj", "{CC249FAD-C24D-4B37-AF8F-FA05D0FD5620}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{A85F5917-A1F5-43D2-BDDC-CAE179B15DDE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A85F5917-A1F5-43D2-BDDC-CAE179B15DDE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A85F5917-A1F5-43D2-BDDC-CAE179B15DDE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A85F5917-A1F5-43D2-BDDC-CAE179B15DDE}.Release|Any CPU.Build.0 = Release|Any CPU
{E6EE341A-E10A-423C-B3D8-FEEA0942CFA8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E6EE341A-E10A-423C-B3D8-FEEA0942CFA8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E6EE341A-E10A-423C-B3D8-FEEA0942CFA8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E6EE341A-E10A-423C-B3D8-FEEA0942CFA8}.Release|Any CPU.Build.0 = Release|Any CPU
{CC249FAD-C24D-4B37-AF8F-FA05D0FD5620}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CC249FAD-C24D-4B37-AF8F-FA05D0FD5620}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CC249FAD-C24D-4B37-AF8F-FA05D0FD5620}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CC249FAD-C24D-4B37-AF8F-FA05D0FD5620}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
5 changes: 5 additions & 0 deletions System.Containers/Class1.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
namespace System.Containers;
public class Class1
{

}
9 changes: 9 additions & 0 deletions System.Containers/System.Containers.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="MSTest.TestAdapter" />
<PackageReference Include="MSTest.TestFramework" />
<PackageReference Include="coverlet.collector" />
</ItemGroup>

</Project>
10 changes: 10 additions & 0 deletions Test.System.Containers.Filesystem/UnitTest1.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
namespace Test.System.Containers.Filesystem;

[TestClass]
public class UnitTest1
{
[TestMethod]
public void TestMethod1()
{
}
}
1 change: 1 addition & 0 deletions Test.System.Containers.Filesystem/Usings.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
global using Microsoft.VisualStudio.TestTools.UnitTesting;
18 changes: 18 additions & 0 deletions Test.System.Containers/Test.System.Containers.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.8" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.8" />
<PackageReference Include="coverlet.collector" Version="3.1.2" />
</ItemGroup>

</Project>
10 changes: 10 additions & 0 deletions Test.System.Containers/UnitTest1.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
namespace Test.System.Containers;

[TestClass]
public class UnitTest1
{
[TestMethod]
public void TestMethod1()
{
}
}
1 change: 1 addition & 0 deletions Test.System.Containers/Usings.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
global using Microsoft.VisualStudio.TestTools.UnitTesting;

0 comments on commit 9c747b4

Please sign in to comment.