Skip to content

Commit 63f5e5a

Browse files
kboomGrzegorz Gurgul
and
Grzegorz Gurgul
authored
First tests (#1)
Co-authored-by: Grzegorz Gurgul <[email protected]>
1 parent 30a0805 commit 63f5e5a

File tree

3 files changed

+49
-1
lines changed

3 files changed

+49
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>net472</TargetFrameworks>
5+
<EnableNETAnalyzers>true</EnableNETAnalyzers>
6+
<AnalysisLevel>5.0</AnalysisLevel>
7+
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
8+
<OutputType>Library</OutputType>
9+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
10+
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
11+
<IsPackable>false</IsPackable>
12+
</PropertyGroup>
13+
14+
<ItemGroup>
15+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
16+
<PackageReference Include="MSTest.TestAdapter" Version="2.2.8" />
17+
<PackageReference Include="MSTest.TestFramework" Version="2.2.8" />
18+
<PackageReference Include="coverlet.collector" Version="3.1.2" />
19+
</ItemGroup>
20+
21+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
using Microsoft.VisualStudio.TestTools.UnitTesting;
2+
3+
namespace GitTreeFilter.Core.Tests
4+
{
5+
[TestClass]
6+
public class SolutionRepositoryTest
7+
{
8+
[TestMethod]
9+
public void TestMethod1()
10+
{
11+
}
12+
}
13+
}

GitTreeFilter.sln

+15-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GitTreeFilter", "GitTreeFil
88
{BDDDDC29-B0DD-4A08-8E62-387A4D768D2A} = {BDDDDC29-B0DD-4A08-8E62-387A4D768D2A}
99
EndProjectSection
1010
EndProject
11-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GitTreeFilter.Core", "GitTreeFilter.Core\GitTreeFilter.Core.csproj", "{BDDDDC29-B0DD-4A08-8E62-387A4D768D2A}"
11+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GitTreeFilter.Core", "GitTreeFilter.Core\GitTreeFilter.Core.csproj", "{BDDDDC29-B0DD-4A08-8E62-387A4D768D2A}"
12+
EndProject
13+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GitTreeFilter.Core.Tests", "GitTreeFilter.Core.Tests\GitTreeFilter.Core.Tests.csproj", "{DE2EFC78-AFC7-40A3-82AA-A6D4BD6C26E4}"
1214
EndProject
1315
Global
1416
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -44,6 +46,18 @@ Global
4446
{BDDDDC29-B0DD-4A08-8E62-387A4D768D2A}.Release|arm64.Build.0 = Release|Any CPU
4547
{BDDDDC29-B0DD-4A08-8E62-387A4D768D2A}.Release|x86.ActiveCfg = Release|Any CPU
4648
{BDDDDC29-B0DD-4A08-8E62-387A4D768D2A}.Release|x86.Build.0 = Release|Any CPU
49+
{DE2EFC78-AFC7-40A3-82AA-A6D4BD6C26E4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
50+
{DE2EFC78-AFC7-40A3-82AA-A6D4BD6C26E4}.Debug|Any CPU.Build.0 = Debug|Any CPU
51+
{DE2EFC78-AFC7-40A3-82AA-A6D4BD6C26E4}.Debug|arm64.ActiveCfg = Debug|Any CPU
52+
{DE2EFC78-AFC7-40A3-82AA-A6D4BD6C26E4}.Debug|arm64.Build.0 = Debug|Any CPU
53+
{DE2EFC78-AFC7-40A3-82AA-A6D4BD6C26E4}.Debug|x86.ActiveCfg = Debug|Any CPU
54+
{DE2EFC78-AFC7-40A3-82AA-A6D4BD6C26E4}.Debug|x86.Build.0 = Debug|Any CPU
55+
{DE2EFC78-AFC7-40A3-82AA-A6D4BD6C26E4}.Release|Any CPU.ActiveCfg = Release|Any CPU
56+
{DE2EFC78-AFC7-40A3-82AA-A6D4BD6C26E4}.Release|Any CPU.Build.0 = Release|Any CPU
57+
{DE2EFC78-AFC7-40A3-82AA-A6D4BD6C26E4}.Release|arm64.ActiveCfg = Release|Any CPU
58+
{DE2EFC78-AFC7-40A3-82AA-A6D4BD6C26E4}.Release|arm64.Build.0 = Release|Any CPU
59+
{DE2EFC78-AFC7-40A3-82AA-A6D4BD6C26E4}.Release|x86.ActiveCfg = Release|Any CPU
60+
{DE2EFC78-AFC7-40A3-82AA-A6D4BD6C26E4}.Release|x86.Build.0 = Release|Any CPU
4761
EndGlobalSection
4862
GlobalSection(SolutionProperties) = preSolution
4963
HideSolutionNode = FALSE

0 commit comments

Comments
 (0)