change platform to AnyCPU

This commit is contained in:
unknown 2013-10-28 00:25:01 +02:00
parent eb1d079383
commit 277bff0cd3
3 changed files with 78 additions and 65 deletions

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
<PropertyGroup>
<ProjectGuid>{C63803BA-7F7A-4BBC-AC46-948637802408}</ProjectGuid>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -10,9 +10,14 @@
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
<AppDesignerFolder>Properties</AppDesignerFolder>
<FileUpgradeFlags>
</FileUpgradeFlags>
<UpgradeBackupLocation>
</UpgradeBackupLocation>
<OldToolsVersion>3.5</OldToolsVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'x86' ">
<PlatformTarget>x86</PlatformTarget>
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath>bin\Debug\</OutputPath>

View File

@ -1,18 +1,26 @@

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
# SharpDevelop 4.2.0.8649-Beta 2
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Control.Draggable", "Control.Draggable.csproj", "{C63803BA-7F7A-4BBC-AC46-948637802408}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{C63803BA-7F7A-4BBC-AC46-948637802408}.Debug|x86.Build.0 = Debug|x86
{C63803BA-7F7A-4BBC-AC46-948637802408}.Debug|x86.ActiveCfg = Debug|x86
{C63803BA-7F7A-4BBC-AC46-948637802408}.Release|x86.Build.0 = Release|x86
{C63803BA-7F7A-4BBC-AC46-948637802408}.Release|x86.ActiveCfg = Release|x86
{C63803BA-7F7A-4BBC-AC46-948637802408}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C63803BA-7F7A-4BBC-AC46-948637802408}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C63803BA-7F7A-4BBC-AC46-948637802408}.Debug|x86.ActiveCfg = Release|Any CPU
{C63803BA-7F7A-4BBC-AC46-948637802408}.Debug|x86.Build.0 = Release|Any CPU
{C63803BA-7F7A-4BBC-AC46-948637802408}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C63803BA-7F7A-4BBC-AC46-948637802408}.Release|Any CPU.Build.0 = Release|Any CPU
{C63803BA-7F7A-4BBC-AC46-948637802408}.Release|x86.ActiveCfg = Release|Any CPU
{C63803BA-7F7A-4BBC-AC46-948637802408}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal

View File

@ -10,7 +10,7 @@ using System.Runtime.InteropServices;
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Control.Draggable")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyDescription("Makes any WinForms control draggable")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Control.Draggable")]