Skip to content

Commit e275ed1

Browse files
committed
Upgraded solution to vs2010
1 parent 6649101 commit e275ed1

9 files changed

+321
-14
lines changed

src/Examples.FirstAutomappedProject/Examples.FirstAutomappedProject.csproj

Lines changed: 41 additions & 1 deletion
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>
@@ -13,6 +13,25 @@
1313
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
1515
<StartupObject>Examples.FirstAutomappedProject.Program</StartupObject>
16+
<FileUpgradeFlags>
17+
</FileUpgradeFlags>
18+
<OldToolsVersion>3.5</OldToolsVersion>
19+
<UpgradeBackupLocation />
20+
<PublishUrl>publish\</PublishUrl>
21+
<Install>true</Install>
22+
<InstallFrom>Disk</InstallFrom>
23+
<UpdateEnabled>false</UpdateEnabled>
24+
<UpdateMode>Foreground</UpdateMode>
25+
<UpdateInterval>7</UpdateInterval>
26+
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
27+
<UpdatePeriodically>false</UpdatePeriodically>
28+
<UpdateRequired>false</UpdateRequired>
29+
<MapFileExtensions>true</MapFileExtensions>
30+
<ApplicationRevision>0</ApplicationRevision>
31+
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
32+
<IsWebBootstrapper>false</IsWebBootstrapper>
33+
<UseApplicationTrust>false</UseApplicationTrust>
34+
<BootstrapperEnabled>true</BootstrapperEnabled>
1635
</PropertyGroup>
1736
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1837
<DebugSymbols>true</DebugSymbols>
@@ -22,6 +41,7 @@
2241
<DefineConstants>DEBUG;TRACE</DefineConstants>
2342
<ErrorReport>prompt</ErrorReport>
2443
<WarningLevel>4</WarningLevel>
44+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
2545
</PropertyGroup>
2646
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2747
<DebugType>pdbonly</DebugType>
@@ -30,6 +50,7 @@
3050
<DefineConstants>TRACE</DefineConstants>
3151
<ErrorReport>prompt</ErrorReport>
3252
<WarningLevel>4</WarningLevel>
53+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
3354
</PropertyGroup>
3455
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
3556
<DebugSymbols>true</DebugSymbols>
@@ -39,6 +60,7 @@
3960
<PlatformTarget>x86</PlatformTarget>
4061
<ErrorReport>prompt</ErrorReport>
4162
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
63+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
4264
</PropertyGroup>
4365
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
4466
<OutputPath>bin\x86\Release\</OutputPath>
@@ -47,6 +69,7 @@
4769
<DebugType>pdbonly</DebugType>
4870
<PlatformTarget>x86</PlatformTarget>
4971
<ErrorReport>prompt</ErrorReport>
72+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
5073
</PropertyGroup>
5174
<ItemGroup>
5275
<Reference Include="NHibernate, Version=2.0.0.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4, processorArchitecture=MSIL">
@@ -83,6 +106,23 @@
83106
<Name>FluentNHibernate</Name>
84107
</ProjectReference>
85108
</ItemGroup>
109+
<ItemGroup>
110+
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
111+
<Visible>False</Visible>
112+
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
113+
<Install>false</Install>
114+
</BootstrapperPackage>
115+
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
116+
<Visible>False</Visible>
117+
<ProductName>.NET Framework 3.5 SP1</ProductName>
118+
<Install>true</Install>
119+
</BootstrapperPackage>
120+
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
121+
<Visible>False</Visible>
122+
<ProductName>Windows Installer 3.1</ProductName>
123+
<Install>true</Install>
124+
</BootstrapperPackage>
125+
</ItemGroup>
86126
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
87127
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
88128
Other similar extension points exist, see Microsoft.Common.targets.

src/Examples.FirstProject/Examples.FirstProject.csproj

Lines changed: 41 additions & 1 deletion
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>
@@ -13,6 +13,25 @@
1313
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
1515
<StartupObject>Examples.FirstProject.Program</StartupObject>
16+
<FileUpgradeFlags>
17+
</FileUpgradeFlags>
18+
<OldToolsVersion>3.5</OldToolsVersion>
19+
<UpgradeBackupLocation />
20+
<PublishUrl>publish\</PublishUrl>
21+
<Install>true</Install>
22+
<InstallFrom>Disk</InstallFrom>
23+
<UpdateEnabled>false</UpdateEnabled>
24+
<UpdateMode>Foreground</UpdateMode>
25+
<UpdateInterval>7</UpdateInterval>
26+
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
27+
<UpdatePeriodically>false</UpdatePeriodically>
28+
<UpdateRequired>false</UpdateRequired>
29+
<MapFileExtensions>true</MapFileExtensions>
30+
<ApplicationRevision>0</ApplicationRevision>
31+
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
32+
<IsWebBootstrapper>false</IsWebBootstrapper>
33+
<UseApplicationTrust>false</UseApplicationTrust>
34+
<BootstrapperEnabled>true</BootstrapperEnabled>
1635
</PropertyGroup>
1736
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1837
<DebugSymbols>true</DebugSymbols>
@@ -22,6 +41,7 @@
2241
<DefineConstants>DEBUG;TRACE</DefineConstants>
2342
<ErrorReport>prompt</ErrorReport>
2443
<WarningLevel>4</WarningLevel>
44+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
2545
</PropertyGroup>
2646
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2747
<DebugType>pdbonly</DebugType>
@@ -30,6 +50,7 @@
3050
<DefineConstants>TRACE</DefineConstants>
3151
<ErrorReport>prompt</ErrorReport>
3252
<WarningLevel>4</WarningLevel>
53+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
3354
</PropertyGroup>
3455
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
3556
<DebugSymbols>true</DebugSymbols>
@@ -39,6 +60,7 @@
3960
<PlatformTarget>x86</PlatformTarget>
4061
<ErrorReport>prompt</ErrorReport>
4162
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
63+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
4264
</PropertyGroup>
4365
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
4466
<OutputPath>bin\x86\Release\</OutputPath>
@@ -47,6 +69,7 @@
4769
<DebugType>pdbonly</DebugType>
4870
<PlatformTarget>x86</PlatformTarget>
4971
<ErrorReport>prompt</ErrorReport>
72+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
5073
</PropertyGroup>
5174
<ItemGroup>
5275
<Reference Include="NHibernate, Version=2.0.0.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4, processorArchitecture=MSIL">
@@ -96,6 +119,23 @@
96119
<Name>FluentNHibernate</Name>
97120
</ProjectReference>
98121
</ItemGroup>
122+
<ItemGroup>
123+
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
124+
<Visible>False</Visible>
125+
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
126+
<Install>false</Install>
127+
</BootstrapperPackage>
128+
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
129+
<Visible>False</Visible>
130+
<ProductName>.NET Framework 3.5 SP1</ProductName>
131+
<Install>true</Install>
132+
</BootstrapperPackage>
133+
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
134+
<Visible>False</Visible>
135+
<ProductName>Windows Installer 3.1</ProductName>
136+
<Install>true</Install>
137+
</BootstrapperPackage>
138+
</ItemGroup>
99139
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
100140
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
101141
Other similar extension points exist, see Microsoft.Common.targets.
Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
1-
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
23
<PropertyGroup>
34
<ProjectView>ShowAllFiles</ProjectView>
5+
<PublishUrlHistory />
6+
<InstallUrlHistory />
7+
<SupportUrlHistory />
8+
<UpdateUrlHistory />
9+
<BootstrapperUrlHistory />
10+
<ErrorReportUrlHistory />
11+
<FallbackCulture>en-US</FallbackCulture>
12+
<VerifyUploadedFiles>false</VerifyUploadedFiles>
413
</PropertyGroup>
514
</Project>

src/FluentNHibernate.Specs/FluentNHibernate.Specs.csproj

Lines changed: 39 additions & 1 deletion
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>FluentNHibernate.Specs</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>
@@ -22,6 +41,7 @@
2241
<ErrorReport>prompt</ErrorReport>
2342
<WarningLevel>4</WarningLevel>
2443
<PlatformTarget>x86</PlatformTarget>
44+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
2545
</PropertyGroup>
2646
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2747
<DebugType>pdbonly</DebugType>
@@ -30,6 +50,7 @@
3050
<DefineConstants>TRACE</DefineConstants>
3151
<ErrorReport>prompt</ErrorReport>
3252
<WarningLevel>4</WarningLevel>
53+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
3354
</PropertyGroup>
3455
<ItemGroup>
3556
<Reference Include="Iesi.Collections, Version=1.0.1.0, Culture=neutral, PublicKeyToken=aa95f207798dfdb4, processorArchitecture=MSIL">
@@ -149,6 +170,23 @@
149170
<Compile Include="FluentInterface\ExternalComponentOutputSpecs.cs" />
150171
<Compile Include="FluentInterface\Fixtures\BiDirectionalKeyIssue.cs" />
151172
</ItemGroup>
173+
<ItemGroup>
174+
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
175+
<Visible>False</Visible>
176+
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
177+
<Install>false</Install>
178+
</BootstrapperPackage>
179+
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
180+
<Visible>False</Visible>
181+
<ProductName>.NET Framework 3.5 SP1</ProductName>
182+
<Install>true</Install>
183+
</BootstrapperPackage>
184+
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
185+
<Visible>False</Visible>
186+
<ProductName>Windows Installer 3.1</ProductName>
187+
<Install>true</Install>
188+
</BootstrapperPackage>
189+
</ItemGroup>
152190
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
153191
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
154192
Other similar extension points exist, see Microsoft.Common.targets.

src/FluentNHibernate.Testing/FluentNHibernate.Testing.csproj

Lines changed: 39 additions & 1 deletion
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
<SignAssembly>false</SignAssembly>
1616
<AssemblyOriginatorKeyFile>..\FluentKey.snk</AssemblyOriginatorKeyFile>
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|x86' ">
1938
<DebugSymbols>true</DebugSymbols>
@@ -24,6 +43,7 @@
2443
<ErrorReport>prompt</ErrorReport>
2544
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
2645
<NoWarn>169</NoWarn>
46+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
2747
</PropertyGroup>
2848
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
2949
<OutputPath>bin\Release\</OutputPath>
@@ -32,6 +52,7 @@
3252
<DebugType>pdbonly</DebugType>
3353
<PlatformTarget>x86</PlatformTarget>
3454
<ErrorReport>prompt</ErrorReport>
55+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
3556
</PropertyGroup>
3657
<ItemGroup>
3758
<Reference Include="Castle.DynamicProxy2, Version=2.1.0.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL">
@@ -480,6 +501,23 @@
480501
<ItemGroup>
481502
<Folder Include="Fixtures\Conventions\" />
482503
</ItemGroup>
504+
<ItemGroup>
505+
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
506+
<Visible>False</Visible>
507+
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
508+
<Install>false</Install>
509+
</BootstrapperPackage>
510+
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
511+
<Visible>False</Visible>
512+
<ProductName>.NET Framework 3.5 SP1</ProductName>
513+
<Install>true</Install>
514+
</BootstrapperPackage>
515+
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
516+
<Visible>False</Visible>
517+
<ProductName>Windows Installer 3.1</ProductName>
518+
<Install>true</Install>
519+
</BootstrapperPackage>
520+
</ItemGroup>
483521
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
484522
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
485523
Other similar extension points exist, see Microsoft.Common.targets.
Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
1-
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
23
<PropertyGroup>
34
<ProjectView>ProjectFiles</ProjectView>
5+
<PublishUrlHistory />
6+
<InstallUrlHistory />
7+
<SupportUrlHistory />
8+
<UpdateUrlHistory />
9+
<BootstrapperUrlHistory />
10+
<ErrorReportUrlHistory />
11+
<FallbackCulture>en-US</FallbackCulture>
12+
<VerifyUploadedFiles>false</VerifyUploadedFiles>
413
</PropertyGroup>
514
</Project>

src/FluentNHibernate.sln

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
1-
Microsoft Visual Studio Solution File, Format Version 10.00
2-
# Visual Studio 2008
3-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FluentNHibernate.Testing", "FluentNHibernate.Testing\FluentNHibernate.Testing.csproj", "{F5DC3221-827E-4CB4-B61C-5F50EB4D32EA}"
4-
EndProject
1+
Microsoft Visual Studio Solution File, Format Version 11.00
2+
# Visual Studio 2010
53
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Common", "Common", "{83F17668-79F5-46CB-9C33-AF30F48FAAD8}"
64
ProjectSection(SolutionItems) = preProject
75
CONTRIBUTORS - READ ME!.txt = CONTRIBUTORS - READ ME!.txt
86
FluentKey.snk = FluentKey.snk
97
EndProjectSection
108
EndProject
9+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Examples", "Examples", "{3D285AE0-E5CF-4923-B543-0D70E5C6DE18}"
10+
EndProject
11+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FluentNHibernate.Testing", "FluentNHibernate.Testing\FluentNHibernate.Testing.csproj", "{F5DC3221-827E-4CB4-B61C-5F50EB4D32EA}"
12+
EndProject
1113
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FluentNHibernate", "FluentNHibernate\FluentNHibernate.csproj", "{529145D5-6CC3-4016-89B5-826563024AF1}"
1214
EndProject
1315
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Examples.FirstProject", "Examples.FirstProject\Examples.FirstProject.csproj", "{B43FC076-1704-409A-A4F5-91A5DB22B4CF}"
@@ -16,8 +18,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FluentNHibernate.Specs", "F
1618
EndProject
1719
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Examples.FirstAutomappedProject", "Examples.FirstAutomappedProject\Examples.FirstAutomappedProject.csproj", "{38CB7FE2-9018-4EF2-A3BA-21A939E70718}"
1820
EndProject
19-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Examples", "Examples", "{3D285AE0-E5CF-4923-B543-0D70E5C6DE18}"
20-
EndProject
2121
Global
2222
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2323
Debug|Any CPU = Debug|Any CPU
@@ -89,7 +89,7 @@ Global
8989
HideSolutionNode = FALSE
9090
EndGlobalSection
9191
GlobalSection(NestedProjects) = preSolution
92-
{38CB7FE2-9018-4EF2-A3BA-21A939E70718} = {3D285AE0-E5CF-4923-B543-0D70E5C6DE18}
9392
{B43FC076-1704-409A-A4F5-91A5DB22B4CF} = {3D285AE0-E5CF-4923-B543-0D70E5C6DE18}
93+
{38CB7FE2-9018-4EF2-A3BA-21A939E70718} = {3D285AE0-E5CF-4923-B543-0D70E5C6DE18}
9494
EndGlobalSection
9595
EndGlobal

0 commit comments

Comments
 (0)