Skip to content

Commit 3dbdfab

Browse files
committed
convert to Visual Studio 2010 project format
1 parent a97ef5f commit 3dbdfab

File tree

4 files changed

+82
-6
lines changed

4 files changed

+82
-6
lines changed

MarkdownSharp.sln

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

2-
Microsoft Visual Studio Solution File, Format Version 10.00
3-
# Visual Studio 2008
2+
Microsoft Visual Studio Solution File, Format Version 11.00
3+
# Visual Studio 2010
44
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MarkdownSharp", "MarkdownSharp\MarkdownSharp.csproj", "{37619116-CCE8-465A-8B1F-081CA53364BB}"
55
EndProject
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MarkdownSharpTests", "MarkdownSharpTests\MarkdownSharpTests.csproj", "{1F76D227-9B91-475B-9B64-B7A3D0EE7E3D}"

MarkdownSharp/MarkdownSharp.csproj

+39-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
55
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -14,6 +14,25 @@
1414
<FileAlignment>512</FileAlignment>
1515
<StartupObject>
1616
</StartupObject>
17+
<FileUpgradeFlags>
18+
</FileUpgradeFlags>
19+
<OldToolsVersion>3.5</OldToolsVersion>
20+
<UpgradeBackupLocation />
21+
<PublishUrl>publish\</PublishUrl>
22+
<Install>true</Install>
23+
<InstallFrom>Disk</InstallFrom>
24+
<UpdateEnabled>false</UpdateEnabled>
25+
<UpdateMode>Foreground</UpdateMode>
26+
<UpdateInterval>7</UpdateInterval>
27+
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
28+
<UpdatePeriodically>false</UpdatePeriodically>
29+
<UpdateRequired>false</UpdateRequired>
30+
<MapFileExtensions>true</MapFileExtensions>
31+
<ApplicationRevision>0</ApplicationRevision>
32+
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
33+
<IsWebBootstrapper>false</IsWebBootstrapper>
34+
<UseApplicationTrust>false</UseApplicationTrust>
35+
<BootstrapperEnabled>true</BootstrapperEnabled>
1736
</PropertyGroup>
1837
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1938
<DebugSymbols>true</DebugSymbols>
@@ -23,6 +42,7 @@
2342
<DefineConstants>DEBUG;TRACE</DefineConstants>
2443
<ErrorReport>prompt</ErrorReport>
2544
<WarningLevel>4</WarningLevel>
45+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
2646
</PropertyGroup>
2747
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2848
<DebugType>pdbonly</DebugType>
@@ -31,6 +51,7 @@
3151
<DefineConstants>TRACE</DefineConstants>
3252
<ErrorReport>prompt</ErrorReport>
3353
<WarningLevel>4</WarningLevel>
54+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
3455
</PropertyGroup>
3556
<ItemGroup>
3657
<Reference Include="System" />
@@ -46,6 +67,23 @@
4667
<ItemGroup>
4768
<Folder Include="Properties\" />
4869
</ItemGroup>
70+
<ItemGroup>
71+
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
72+
<Visible>False</Visible>
73+
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
74+
<Install>false</Install>
75+
</BootstrapperPackage>
76+
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
77+
<Visible>False</Visible>
78+
<ProductName>.NET Framework 3.5 SP1</ProductName>
79+
<Install>true</Install>
80+
</BootstrapperPackage>
81+
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
82+
<Visible>False</Visible>
83+
<ProductName>Windows Installer 3.1</ProductName>
84+
<Install>true</Install>
85+
</BootstrapperPackage>
86+
</ItemGroup>
4987
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
5088
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
5189
Other similar extension points exist, see Microsoft.Common.targets.

MarkdownSharpTests/MarkdownSharpTests.csproj

+39-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
55
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -12,6 +12,25 @@
1212
<AssemblyName>MarkdownSharpTests</AssemblyName>
1313
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
15+
<FileUpgradeFlags>
16+
</FileUpgradeFlags>
17+
<OldToolsVersion>3.5</OldToolsVersion>
18+
<UpgradeBackupLocation />
19+
<PublishUrl>publish\</PublishUrl>
20+
<Install>true</Install>
21+
<InstallFrom>Disk</InstallFrom>
22+
<UpdateEnabled>false</UpdateEnabled>
23+
<UpdateMode>Foreground</UpdateMode>
24+
<UpdateInterval>7</UpdateInterval>
25+
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
26+
<UpdatePeriodically>false</UpdatePeriodically>
27+
<UpdateRequired>false</UpdateRequired>
28+
<MapFileExtensions>true</MapFileExtensions>
29+
<ApplicationRevision>0</ApplicationRevision>
30+
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
31+
<IsWebBootstrapper>false</IsWebBootstrapper>
32+
<UseApplicationTrust>false</UseApplicationTrust>
33+
<BootstrapperEnabled>true</BootstrapperEnabled>
1534
</PropertyGroup>
1635
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1736
<DebugSymbols>true</DebugSymbols>
@@ -21,6 +40,7 @@
2140
<DefineConstants>DEBUG;TRACE</DefineConstants>
2241
<ErrorReport>prompt</ErrorReport>
2342
<WarningLevel>4</WarningLevel>
43+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
2444
</PropertyGroup>
2545
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2646
<DebugType>pdbonly</DebugType>
@@ -29,6 +49,7 @@
2949
<DefineConstants>TRACE</DefineConstants>
3050
<ErrorReport>prompt</ErrorReport>
3151
<WarningLevel>4</WarningLevel>
52+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
3253
</PropertyGroup>
3354
<ItemGroup>
3455
<Reference Include="log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=1b44e1d426115821" />
@@ -196,6 +217,23 @@
196217
<ItemGroup>
197218
<Folder Include="Properties\" />
198219
</ItemGroup>
220+
<ItemGroup>
221+
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
222+
<Visible>False</Visible>
223+
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
224+
<Install>false</Install>
225+
</BootstrapperPackage>
226+
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
227+
<Visible>False</Visible>
228+
<ProductName>.NET Framework 3.5 SP1</ProductName>
229+
<Install>true</Install>
230+
</BootstrapperPackage>
231+
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
232+
<Visible>False</Visible>
233+
<ProductName>Windows Installer 3.1</ProductName>
234+
<Install>true</Install>
235+
</BootstrapperPackage>
236+
</ItemGroup>
199237
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
200238
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
201239
Other similar extension points exist, see Microsoft.Common.targets.

MarkdownSharpTests/Program.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ static void Main(string[] args)
4545
//
4646
//Test(@"pandoc");
4747

48-
//Benchmark();
48+
Benchmark();
4949

50-
AdHocTest();
50+
//AdHocTest();
5151

5252
Console.ReadKey();
5353
}

0 commit comments

Comments
 (0)