Skip to content

Commit

Permalink
More VS2012 upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
1tgr committed Nov 18, 2012
1 parent efc2d57 commit 57171dd
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 52 deletions.
8 changes: 6 additions & 2 deletions Tim.FSIndex.Console/Tim.FSIndex.Console.fsproj
Expand Up @@ -38,8 +38,12 @@
<DocumentationFile>
</DocumentationFile>
</PropertyGroup>
<Import Project="$(MSBuildExtensionsPath32)\FSharp\1.0\Microsoft.FSharp.Targets" Condition="!Exists('$(MSBuildBinPath)\Microsoft.Build.Tasks.v4.0.dll')" />
<Import Project="$(MSBuildExtensionsPath32)\..\Microsoft F#\v4.0\Microsoft.FSharp.Targets" Condition=" Exists('$(MSBuildBinPath)\Microsoft.Build.Tasks.v4.0.dll')" />
<PropertyGroup>
<MinimumVisualStudioVersion Condition="'$(MinimumVisualStudioVersion)' == ''">11</MinimumVisualStudioVersion>
</PropertyGroup>
<Import Project="$(MSBuildExtensionsPath32)\..\Microsoft SDKs\F#\3.0\Framework\v4.0\Microsoft.FSharp.Targets" Condition="Exists('$(MSBuildExtensionsPath32)\..\Microsoft SDKs\F#\3.0\Framework\v4.0\Microsoft.FSharp.Targets')" />
<Import Project="$(MSBuildExtensionsPath32)\..\Microsoft F#\v4.0\Microsoft.FSharp.Targets" Condition="(!Exists('$(MSBuildExtensionsPath32)\..\Microsoft SDKs\F#\3.0\Framework\v4.0\Microsoft.FSharp.Targets')) And (Exists('$(MSBuildExtensionsPath32)\..\Microsoft F#\v4.0\Microsoft.FSharp.Targets'))" />
<Import Project="$(MSBuildExtensionsPath32)\FSharp\1.0\Microsoft.FSharp.Targets" Condition="(!Exists('$(MSBuildExtensionsPath32)\..\Microsoft SDKs\F#\3.0\Framework\v4.0\Microsoft.FSharp.Targets')) And (!Exists('$(MSBuildExtensionsPath32)\..\Microsoft F#\v4.0\Microsoft.FSharp.Targets')) And (Exists('$(MSBuildExtensionsPath32)\FSharp\1.0\Microsoft.FSharp.Targets'))" />
<ItemGroup>
<Compile Include="main.fs" />
<None Include="App.config" />
Expand Down
10 changes: 7 additions & 3 deletions Tim.TryFSharp.Monitor/Tim.TryFSharp.Monitor.fsproj
Expand Up @@ -9,7 +9,7 @@
<OutputType>Exe</OutputType>
<RootNamespace>Tim.TryFSharp.Monitor</RootNamespace>
<AssemblyName>Tim.TryFSharp.Monitor</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<Name>Tim.TryFSharp.Monitor</Name>
<TargetFrameworkProfile />
</PropertyGroup>
Expand Down Expand Up @@ -37,8 +37,12 @@
<DocumentationFile>
</DocumentationFile>
</PropertyGroup>
<Import Project="$(MSBuildExtensionsPath32)\FSharp\1.0\Microsoft.FSharp.Targets" Condition="!Exists('$(MSBuildBinPath)\Microsoft.Build.Tasks.v4.0.dll')" />
<Import Project="$(MSBuildExtensionsPath32)\..\Microsoft F#\v4.0\Microsoft.FSharp.Targets" Condition=" Exists('$(MSBuildBinPath)\Microsoft.Build.Tasks.v4.0.dll')" />
<PropertyGroup>
<MinimumVisualStudioVersion Condition="'$(MinimumVisualStudioVersion)' == ''">11</MinimumVisualStudioVersion>
</PropertyGroup>
<Import Project="$(MSBuildExtensionsPath32)\..\Microsoft SDKs\F#\3.0\Framework\v4.0\Microsoft.FSharp.Targets" Condition="Exists('$(MSBuildExtensionsPath32)\..\Microsoft SDKs\F#\3.0\Framework\v4.0\Microsoft.FSharp.Targets')" />
<Import Project="$(MSBuildExtensionsPath32)\..\Microsoft F#\v4.0\Microsoft.FSharp.Targets" Condition="(!Exists('$(MSBuildExtensionsPath32)\..\Microsoft SDKs\F#\3.0\Framework\v4.0\Microsoft.FSharp.Targets')) And (Exists('$(MSBuildExtensionsPath32)\..\Microsoft F#\v4.0\Microsoft.FSharp.Targets'))" />
<Import Project="$(MSBuildExtensionsPath32)\FSharp\1.0\Microsoft.FSharp.Targets" Condition="(!Exists('$(MSBuildExtensionsPath32)\..\Microsoft SDKs\F#\3.0\Framework\v4.0\Microsoft.FSharp.Targets')) And (!Exists('$(MSBuildExtensionsPath32)\..\Microsoft F#\v4.0\Microsoft.FSharp.Targets')) And (Exists('$(MSBuildExtensionsPath32)\FSharp\1.0\Microsoft.FSharp.Targets'))" />
<ItemGroup>
<None Include="app.config" />
<Compile Include="main.fs" />
Expand Down
19 changes: 15 additions & 4 deletions Tim.TryFSharp.Monitor/app.config
@@ -1,9 +1,20 @@
<?xml version="1.0" encoding="utf-8" ?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<loadFromRemoteSources enabled="true"/>
<loadFromRemoteSources enabled="true" />
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="2.0.0.0" newVersion="4.3.0.0" />
<bindingRedirect oldVersion="2.3.5.0" newVersion="4.3.0.0" />
<bindingRedirect oldVersion="4.0.0.0" newVersion="4.3.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<appSettings>
<add key="appharbor.deploy_as_background_worker" value="false"/>
<add key="appharbor.deploy_as_background_worker" value="false" />
</appSettings>
</configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
</configuration>
57 changes: 14 additions & 43 deletions try-fsharp.sln
@@ -1,6 +1,6 @@

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Tim.TryFSharp.Test", "Tim.TryFSharp.Test\Tim.TryFSharp.Test.fsproj", "{2C8FF113-8B5F-4B4C-9D8B-B0004D62BBC3}"
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Tim.TryFSharp.Service", "Tim.TryFSharp.Service\Tim.TryFSharp.Service.fsproj", "{6FE751EA-3126-4A75-BC77-DAF43AA8274F}"
Expand All @@ -11,67 +11,38 @@ Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Tim.TryFSharp.Core", "Tim.T
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Tim.FSIndex.Console", "Tim.FSIndex.Console\Tim.FSIndex.Console.fsproj", "{870ECF11-0379-441D-9359-B95B78598195}"
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Tim.TryFSharp.Interactive", "Tim.TryFSharp.Interactive\Tim.TryFSharp.Interactive.fsproj", "{FB2CA886-DF2C-4ED1-920F-70136E1CDDA4}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|Mixed Platforms = Debug|Mixed Platforms
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|Mixed Platforms = Release|Mixed Platforms
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{2C8FF113-8B5F-4B4C-9D8B-B0004D62BBC3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2C8FF113-8B5F-4B4C-9D8B-B0004D62BBC3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2C8FF113-8B5F-4B4C-9D8B-B0004D62BBC3}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{2C8FF113-8B5F-4B4C-9D8B-B0004D62BBC3}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{2C8FF113-8B5F-4B4C-9D8B-B0004D62BBC3}.Debug|x86.ActiveCfg = Debug|Any CPU
{2C8FF113-8B5F-4B4C-9D8B-B0004D62BBC3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2C8FF113-8B5F-4B4C-9D8B-B0004D62BBC3}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{2C8FF113-8B5F-4B4C-9D8B-B0004D62BBC3}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{2C8FF113-8B5F-4B4C-9D8B-B0004D62BBC3}.Release|x86.ActiveCfg = Release|Any CPU
{6FE751EA-3126-4A75-BC77-DAF43AA8274F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6FE751EA-3126-4A75-BC77-DAF43AA8274F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6FE751EA-3126-4A75-BC77-DAF43AA8274F}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{6FE751EA-3126-4A75-BC77-DAF43AA8274F}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{2C8FF113-8B5F-4B4C-9D8B-B0004D62BBC3}.Debug|x86.ActiveCfg = Debug|x86
{2C8FF113-8B5F-4B4C-9D8B-B0004D62BBC3}.Debug|x86.Build.0 = Debug|x86
{2C8FF113-8B5F-4B4C-9D8B-B0004D62BBC3}.Release|x86.ActiveCfg = Release|x86
{2C8FF113-8B5F-4B4C-9D8B-B0004D62BBC3}.Release|x86.Build.0 = Release|x86
{6FE751EA-3126-4A75-BC77-DAF43AA8274F}.Debug|x86.ActiveCfg = Debug|x86
{6FE751EA-3126-4A75-BC77-DAF43AA8274F}.Debug|x86.Build.0 = Debug|x86
{6FE751EA-3126-4A75-BC77-DAF43AA8274F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6FE751EA-3126-4A75-BC77-DAF43AA8274F}.Release|Any CPU.Build.0 = Release|Any CPU
{6FE751EA-3126-4A75-BC77-DAF43AA8274F}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{6FE751EA-3126-4A75-BC77-DAF43AA8274F}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{6FE751EA-3126-4A75-BC77-DAF43AA8274F}.Release|x86.ActiveCfg = Release|x86
{6FE751EA-3126-4A75-BC77-DAF43AA8274F}.Release|x86.Build.0 = Release|x86
{75D3B485-D16D-429C-AD5F-647FB78E25B7}.Debug|Any CPU.ActiveCfg = Debug|x86
{75D3B485-D16D-429C-AD5F-647FB78E25B7}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
{75D3B485-D16D-429C-AD5F-647FB78E25B7}.Debug|Mixed Platforms.Build.0 = Debug|x86
{75D3B485-D16D-429C-AD5F-647FB78E25B7}.Debug|x86.ActiveCfg = Debug|x86
{75D3B485-D16D-429C-AD5F-647FB78E25B7}.Debug|x86.Build.0 = Debug|x86
{75D3B485-D16D-429C-AD5F-647FB78E25B7}.Release|Any CPU.ActiveCfg = Release|x86
{75D3B485-D16D-429C-AD5F-647FB78E25B7}.Release|Mixed Platforms.ActiveCfg = Release|x86
{75D3B485-D16D-429C-AD5F-647FB78E25B7}.Release|Mixed Platforms.Build.0 = Release|x86
{75D3B485-D16D-429C-AD5F-647FB78E25B7}.Release|x86.ActiveCfg = Release|x86
{75D3B485-D16D-429C-AD5F-647FB78E25B7}.Release|x86.Build.0 = Release|x86
{5D850E2F-6B96-4B22-9672-9507763E632D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5D850E2F-6B96-4B22-9672-9507763E632D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5D850E2F-6B96-4B22-9672-9507763E632D}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{5D850E2F-6B96-4B22-9672-9507763E632D}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{5D850E2F-6B96-4B22-9672-9507763E632D}.Debug|x86.ActiveCfg = Debug|Any CPU
{5D850E2F-6B96-4B22-9672-9507763E632D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5D850E2F-6B96-4B22-9672-9507763E632D}.Release|Any CPU.Build.0 = Release|Any CPU
{5D850E2F-6B96-4B22-9672-9507763E632D}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{5D850E2F-6B96-4B22-9672-9507763E632D}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{5D850E2F-6B96-4B22-9672-9507763E632D}.Debug|x86.Build.0 = Debug|Any CPU
{5D850E2F-6B96-4B22-9672-9507763E632D}.Release|x86.ActiveCfg = Release|Any CPU
{870ECF11-0379-441D-9359-B95B78598195}.Debug|Any CPU.ActiveCfg = Debug|x86
{870ECF11-0379-441D-9359-B95B78598195}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
{870ECF11-0379-441D-9359-B95B78598195}.Debug|Mixed Platforms.Build.0 = Debug|x86
{5D850E2F-6B96-4B22-9672-9507763E632D}.Release|x86.Build.0 = Release|Any CPU
{870ECF11-0379-441D-9359-B95B78598195}.Debug|x86.ActiveCfg = Debug|x86
{870ECF11-0379-441D-9359-B95B78598195}.Debug|x86.Build.0 = Debug|x86
{870ECF11-0379-441D-9359-B95B78598195}.Release|Any CPU.ActiveCfg = Release|x86
{870ECF11-0379-441D-9359-B95B78598195}.Release|Mixed Platforms.ActiveCfg = Release|x86
{870ECF11-0379-441D-9359-B95B78598195}.Release|Mixed Platforms.Build.0 = Release|x86
{870ECF11-0379-441D-9359-B95B78598195}.Release|x86.ActiveCfg = Release|x86
{870ECF11-0379-441D-9359-B95B78598195}.Release|x86.Build.0 = Release|x86
{FB2CA886-DF2C-4ED1-920F-70136E1CDDA4}.Debug|x86.ActiveCfg = Debug|x86
{FB2CA886-DF2C-4ED1-920F-70136E1CDDA4}.Debug|x86.Build.0 = Debug|x86
{FB2CA886-DF2C-4ED1-920F-70136E1CDDA4}.Release|x86.ActiveCfg = Release|x86
{FB2CA886-DF2C-4ED1-920F-70136E1CDDA4}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down

0 comments on commit 57171dd

Please sign in to comment.