Skip to content

Commit c3b6e63

Browse files
committed
Merge branch 'ngbrown-NH-3890' (updates many of the support projects to net-4.0).
2 parents 3513512 + 4518e75 commit c3b6e63

File tree

12 files changed

+27
-6
lines changed

12 files changed

+27
-6
lines changed

Tools/Antlr/Antlr3.exe.config

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
<?xml version="1.0"?>
22
<configuration>
3-
<startup><supportedRuntime version="v2.0.50727" sku="Client"/></startup></configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0,Profile=Client"/>
5+
<supportedRuntime version="v2.0.50727" sku="Client"/>
6+
</startup>
7+
</configuration>

Tools/BuildTool/.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Ignore file for Visual Studio 2015
2+
3+
*.user
4+
*.suo
5+
.vs/
6+
bin/Debug/
7+
obj/
8+
*.vshost.*

Tools/BuildTool/BuildTool.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
1111
<RootNamespace>BuildTool</RootNamespace>
1212
<AssemblyName>BuildTool</AssemblyName>
13-
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
13+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1414
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
1515
<FileAlignment>512</FileAlignment>
1616
</PropertyGroup>

Tools/BuildTool/app.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<?xml version="1.0"?>
22
<configuration>
3-
<startup><supportedRuntime version="v2.0.50727" sku="Client"/></startup></configuration>
3+
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0,Profile=Client"/></startup></configuration>
0 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<?xml version="1.0"?>
22
<configuration>
3-
<startup><supportedRuntime version="v2.0.50727" sku="Client"/></startup></configuration>
3+
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0,Profile=Client"/></startup></configuration>
0 Bytes
Binary file not shown.

Tools/ilrepack/ILRepack.exe

126 KB
Binary file not shown.

Tools/ilrepack/ILRepack.pdb

-1.38 MB
Binary file not shown.

src/.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Ignore file for Visual Studio 2008/2010
1+
# Ignore file for Visual Studio 2008/2010/2015
22

33
*.obj
44
*.exe
@@ -32,3 +32,4 @@ _ReSharper*/
3232
*.[Pp]ublish.xml
3333
SharedAssemblyInfo.*
3434
hibernate.cfg.xml
35+
.vs/

src/NHibernate.Tool.HbmXsd/NHibernate.Tool.HbmXsd.csproj

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<OldToolsVersion>3.5</OldToolsVersion>
1616
<UpgradeBackupLocation>
1717
</UpgradeBackupLocation>
18-
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
18+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1919
<PublishUrl>publish\</PublishUrl>
2020
<Install>true</Install>
2121
<InstallFrom>Disk</InstallFrom>
@@ -31,6 +31,8 @@
3131
<IsWebBootstrapper>false</IsWebBootstrapper>
3232
<UseApplicationTrust>false</UseApplicationTrust>
3333
<BootstrapperEnabled>true</BootstrapperEnabled>
34+
<TargetFrameworkProfile>
35+
</TargetFrameworkProfile>
3436
</PropertyGroup>
3537
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
3638
<DebugSymbols>true</DebugSymbols>
@@ -77,6 +79,9 @@
7779
<ItemGroup>
7880
<Folder Include="Properties\" />
7981
</ItemGroup>
82+
<ItemGroup>
83+
<None Include="app.config" />
84+
</ItemGroup>
8085
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
8186
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
8287
Other similar extension points exist, see Microsoft.Common.targets.

src/NHibernate.Tool.HbmXsd/app.config

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup></configuration>

0 commit comments

Comments
 (0)