Browse Source

Don't use <TrackFileAccess>false</TrackFileAccess> because it forces a recompile every time. Move the resgen-requiring projects to .NET 4.0 instead.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@5645 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
pull/1/head
Daniel Grunwald 15 years ago
parent
commit
4a6c63d0a2
  1. 6
      SharpDevelop.sln
  2. 6
      src/Libraries/AvalonDock/AvalonDock.csproj
  3. 2
      src/Libraries/TreeViewAdv/Aga.Controls/Aga.Controls.csproj

6
SharpDevelop.sln

@ -465,6 +465,8 @@ Global @@ -465,6 +465,8 @@ Global
Release|Any CPU = Release|Any CPU
Debug|Win32 = Debug|Win32
Release|Win32 = Release|Win32
Debug|x86 = Debug|x86
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{35CEF10F-2D4C-45F2-9DD1-161E0FEC583C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
@ -815,6 +817,10 @@ Global @@ -815,6 +817,10 @@ Global
{B5F54272-49F0-40DB-845A-8D837875D3BA}.Release|Any CPU.ActiveCfg = Release|x86
{B5F54272-49F0-40DB-845A-8D837875D3BA}.Release|Win32.Build.0 = Release|x86
{B5F54272-49F0-40DB-845A-8D837875D3BA}.Release|Win32.ActiveCfg = Release|x86
{B5F54272-49F0-40DB-845A-8D837875D3BA}.Debug|x86.Build.0 = Debug|x86
{B5F54272-49F0-40DB-845A-8D837875D3BA}.Debug|x86.ActiveCfg = Debug|x86
{B5F54272-49F0-40DB-845A-8D837875D3BA}.Release|x86.Build.0 = Release|x86
{B5F54272-49F0-40DB-845A-8D837875D3BA}.Release|x86.ActiveCfg = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

6
src/Libraries/AvalonDock/AvalonDock.csproj

@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@
<ApplicationVersion>1.0.0.*</ApplicationVersion>
<!-- Most people will use Publish dialog in Visual Studio to increment this -->
<MinFrameworkVersionRequired>3.0</MinFrameworkVersionRequired>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion> <!-- required as workaround for bug compiling with 32-bit MSBuild 4.0 on 64-bit Windows without having VS2010 installed -->
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>2.0</OldToolsVersion>
@ -24,7 +24,6 @@ @@ -24,7 +24,6 @@
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
<NoStdLib>False</NoStdLib>
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
<TrackFileAccess>False</TrackFileAccess> <!-- workaround for bug compiling with 32-bit MSBuild 4.0 on 64-bit Windows without having VS2010 installed -->
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
@ -72,6 +71,9 @@ @@ -72,6 +71,9 @@
<Reference Include="WindowsFormsIntegration">
<RequiredTargetFramework>3.0</RequiredTargetFramework>
</Reference>
<Reference Include="System.Xaml">
<RequiredTargetFramework>4.0</RequiredTargetFramework>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="AlignedImage.cs" />

2
src/Libraries/TreeViewAdv/Aga.Controls/Aga.Controls.csproj

@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@
</SccProvider>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>key.snk</AssemblyOriginatorKeyFile>
<TrackFileAccess>false</TrackFileAccess> <!-- workaround for bug compiling with 32-bit MSBuild 4.0 on 64-bit Windows without having VS2010 installed -->
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion> <!-- workaround for bug compiling with 32-bit MSBuild 4.0 on 64-bit Windows without having VS2010 installed -->
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>

Loading…
Cancel
Save