Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions UnitTestProject1/UnitTestProject1.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,42 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x86\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<OutputPath>bin\x86\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x86</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x64\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>bin\x64\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="nunit.core, Version=2.6.4.14350, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
<HintPath>..\packages\NUnitTestAdapter.WithFramework.2.0.0\lib\nunit.core.dll</HintPath>
Expand Down
24 changes: 22 additions & 2 deletions problem-solving.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.40629.0
# Visual Studio 14
VisualStudioVersion = 14.0.25123.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "problem-solving", "problem-solving\problem-solving.csproj", "{D096DD7C-13C5-4AF5-B42F-10D6A09E842F}"
EndProject
Expand All @@ -10,17 +10,37 @@ EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{D096DD7C-13C5-4AF5-B42F-10D6A09E842F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D096DD7C-13C5-4AF5-B42F-10D6A09E842F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D096DD7C-13C5-4AF5-B42F-10D6A09E842F}.Debug|x64.ActiveCfg = Debug|x64
{D096DD7C-13C5-4AF5-B42F-10D6A09E842F}.Debug|x64.Build.0 = Debug|x64
{D096DD7C-13C5-4AF5-B42F-10D6A09E842F}.Debug|x86.ActiveCfg = Debug|x86
{D096DD7C-13C5-4AF5-B42F-10D6A09E842F}.Debug|x86.Build.0 = Debug|x86
{D096DD7C-13C5-4AF5-B42F-10D6A09E842F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D096DD7C-13C5-4AF5-B42F-10D6A09E842F}.Release|Any CPU.Build.0 = Release|Any CPU
{D096DD7C-13C5-4AF5-B42F-10D6A09E842F}.Release|x64.ActiveCfg = Release|x64
{D096DD7C-13C5-4AF5-B42F-10D6A09E842F}.Release|x64.Build.0 = Release|x64
{D096DD7C-13C5-4AF5-B42F-10D6A09E842F}.Release|x86.ActiveCfg = Release|x86
{D096DD7C-13C5-4AF5-B42F-10D6A09E842F}.Release|x86.Build.0 = Release|x86
{61A5ECD0-7306-49C9-83A6-B19ED68A46D5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{61A5ECD0-7306-49C9-83A6-B19ED68A46D5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{61A5ECD0-7306-49C9-83A6-B19ED68A46D5}.Debug|x64.ActiveCfg = Debug|x64
{61A5ECD0-7306-49C9-83A6-B19ED68A46D5}.Debug|x64.Build.0 = Debug|x64
{61A5ECD0-7306-49C9-83A6-B19ED68A46D5}.Debug|x86.ActiveCfg = Debug|x86
{61A5ECD0-7306-49C9-83A6-B19ED68A46D5}.Debug|x86.Build.0 = Debug|x86
{61A5ECD0-7306-49C9-83A6-B19ED68A46D5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{61A5ECD0-7306-49C9-83A6-B19ED68A46D5}.Release|Any CPU.Build.0 = Release|Any CPU
{61A5ECD0-7306-49C9-83A6-B19ED68A46D5}.Release|x64.ActiveCfg = Release|x64
{61A5ECD0-7306-49C9-83A6-B19ED68A46D5}.Release|x64.Build.0 = Release|x64
{61A5ECD0-7306-49C9-83A6-B19ED68A46D5}.Release|x86.ActiveCfg = Release|x86
{61A5ECD0-7306-49C9-83A6-B19ED68A46D5}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
Loading