Skip to content

Commit 834040e

Browse files
committed
mono
1 parent e909d90 commit 834040e

File tree

3 files changed

+90
-0
lines changed

3 files changed

+90
-0
lines changed

src/Advanced.Algorithms.Mono.sln

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.26730.16
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{6FD3B84B-9283-4E9C-8C43-A234E9AA3EAA}"
7+
ProjectSection(SolutionItems) = preProject
8+
..\.nuget\NuGet.Config = ..\.nuget\NuGet.Config
9+
..\.nuget\NuGet.exe = ..\.nuget\NuGet.exe
10+
..\.nuget\NuGet.targets = ..\.nuget\NuGet.targets
11+
EndProjectSection
12+
EndProject
13+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Documentation", "Documentation", "{38EA62D0-D2CB-465D-AF4F-407C5B4D4A1E}"
14+
ProjectSection(SolutionItems) = preProject
15+
..\LICENSE = ..\LICENSE
16+
..\README.md = ..\README.md
17+
EndProjectSection
18+
EndProject
19+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{AC9AE37A-3059-4FDB-9A5C-363AD86F2EEF}"
20+
ProjectSection(SolutionItems) = preProject
21+
..\.build\build.ps1 = ..\.build\build.ps1
22+
..\.build\docfx.json = ..\.build\docfx.json
23+
..\.build\setup.ps1 = ..\.build\setup.ps1
24+
EndProjectSection
25+
EndProject
26+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Advanced.Algorithms", "Advanced.Algorithms\Advanced.Algorithms.Mono.csproj", "{32E22D53-CECD-4E2D-ADAD-85DD79A8549F}"
27+
EndProject
28+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Advanced.Algorithms.Tests", "..\tests\Advanced.Algorithms.Tests\Advanced.Algorithms.Tests.Mono.csproj", "{556705BD-1E64-426D-A9CA-08390156FB85}"
29+
EndProject
30+
Global
31+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
32+
Debug|Any CPU = Debug|Any CPU
33+
Release|Any CPU = Release|Any CPU
34+
EndGlobalSection
35+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
36+
{32E22D53-CECD-4E2D-ADAD-85DD79A8549F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
37+
{32E22D53-CECD-4E2D-ADAD-85DD79A8549F}.Debug|Any CPU.Build.0 = Debug|Any CPU
38+
{32E22D53-CECD-4E2D-ADAD-85DD79A8549F}.Release|Any CPU.ActiveCfg = Release|Any CPU
39+
{32E22D53-CECD-4E2D-ADAD-85DD79A8549F}.Release|Any CPU.Build.0 = Release|Any CPU
40+
{556705BD-1E64-426D-A9CA-08390156FB85}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
41+
{556705BD-1E64-426D-A9CA-08390156FB85}.Debug|Any CPU.Build.0 = Debug|Any CPU
42+
{556705BD-1E64-426D-A9CA-08390156FB85}.Release|Any CPU.ActiveCfg = Release|Any CPU
43+
{556705BD-1E64-426D-A9CA-08390156FB85}.Release|Any CPU.Build.0 = Release|Any CPU
44+
EndGlobalSection
45+
GlobalSection(SolutionProperties) = preSolution
46+
HideSolutionNode = FALSE
47+
EndGlobalSection
48+
GlobalSection(ExtensibilityGlobals) = postSolution
49+
EnterpriseLibraryConfigurationToolBinariesPath = .1.505.2\lib\NET35
50+
SolutionGuid = {625C1EB5-44CF-47DE-A85A-B4C8C40ED90A}
51+
EndGlobalSection
52+
EndGlobal
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>net45</TargetFrameworks>
5+
<RootNamespace>Advanced.Algorithms</RootNamespace>
6+
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
7+
<SignAssembly>True</SignAssembly>
8+
<AssemblyOriginatorKeyFile>StrongNameKey.snk</AssemblyOriginatorKeyFile>
9+
<DelaySign>False</DelaySign>
10+
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
11+
<AssemblyName>Advanced.Algorithms</AssemblyName>
12+
</PropertyGroup>
13+
14+
</Project>
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<RootNamespace>Advanced.Algorithms.Tests</RootNamespace>
5+
<TargetFramework>netcoreapp2.0</TargetFramework>
6+
<IsPackable>false</IsPackable>
7+
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
8+
<SignAssembly>True</SignAssembly>
9+
<AssemblyOriginatorKeyFile>StrongNameKey.snk</AssemblyOriginatorKeyFile>
10+
<DelaySign>False</DelaySign>
11+
<AssemblyName>Advanced.Algorithms.Tests</AssemblyName>
12+
</PropertyGroup>
13+
14+
<ItemGroup>
15+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0" />
16+
<PackageReference Include="MSTest.TestAdapter" Version="1.1.18" />
17+
<PackageReference Include="MSTest.TestFramework" Version="1.1.18" />
18+
</ItemGroup>
19+
20+
<ItemGroup>
21+
<ProjectReference Include="..\..\src\Advanced.Algorithms\Advanced.Algorithms.NetCore.csproj" />
22+
</ItemGroup>
23+
24+
</Project>

0 commit comments

Comments
 (0)