mirror of
https://github.com/xenia-project/dockpanelsuite.git
synced 2026-01-31 01:25:23 +01:00
Updated nuget stuffs. Released nuget package. Updated csproj files to use .NET 4 by default.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
|
||||
<metadata>
|
||||
<version>2.6.0-beta</version>
|
||||
<version>2.6.0.0</version>
|
||||
<authors>Weifen Luo and other contributors</authors>
|
||||
<owners>Weifen Luo and other contributors</owners>
|
||||
<licenseUrl>http://www.opensource.org/licenses/mit-license.php</licenseUrl>
|
||||
@@ -16,7 +16,7 @@
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>The docking library for .Net Windows Forms development which mimics Visual Studio .Net.</description>
|
||||
<summary>The docking library for .Net Windows Forms development which mimics Visual Studio .Net.</summary>
|
||||
<releaseNotes>May 26, 2012: 2.6.0 (beta)
|
||||
<releaseNotes>May 26, 2012: 2.6.0
|
||||
1. Fix Bug [1849882]: When click Autohide, form should slide away.
|
||||
2. Patch 3118287: Fix for unable to move splitter after hide.
|
||||
3. GitHub work item #1: ActiveContentChanged Doesn't Fire When Many DockPanels Exist in Application.
|
||||
|
||||
BIN
.nuget/NuGet.exe
BIN
.nuget/NuGet.exe
Binary file not shown.
@@ -1,4 +1,4 @@
|
||||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
|
||||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
|
||||
25
WinFormsUI.Docking.vs2010.sln
Normal file
25
WinFormsUI.Docking.vs2010.sln
Normal file
@@ -0,0 +1,25 @@
|
||||
Microsoft Visual Studio Solution File, Format Version 11.00
|
||||
# Visual Studio 2010
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WinFormsUI", "WinFormsUI\WinFormsUI.csproj", "{C75532C4-765B-418E-B09B-46D36B2ABDB1}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DockSample", "DockSample\DockSample.csproj", "{40793A27-478B-4357-B4C3-FC8943131F3D}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{C75532C4-765B-418E-B09B-46D36B2ABDB1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{C75532C4-765B-418E-B09B-46D36B2ABDB1}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{C75532C4-765B-418E-B09B-46D36B2ABDB1}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{C75532C4-765B-418E-B09B-46D36B2ABDB1}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{40793A27-478B-4357-B4C3-FC8943131F3D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{40793A27-478B-4357-B4C3-FC8943131F3D}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{40793A27-478B-4357-B4C3-FC8943131F3D}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{40793A27-478B-4357-B4C3-FC8943131F3D}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
|
||||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
set msBuildDir=%WINDIR%\Microsoft.NET\Framework\v4.0.30319
|
||||
call %MSBuildDir%\msbuild WinFormsUI.Docking.sln /t:clean
|
||||
call %MSBuildDir%\msbuild WinFormsUI.Docking.sln /t:clean /p:Configuration=Release
|
||||
call %MSBuildDir%\msbuild WinFormsUI.Docking.vs2010.sln /t:clean
|
||||
call %MSBuildDir%\msbuild WinFormsUI.Docking.vs2010.sln /t:clean /p:Configuration=Release
|
||||
@IF %ERRORLEVEL% NEQ 0 PAUSE
|
||||
@@ -1,3 +1,3 @@
|
||||
set msBuildDir=%WINDIR%\Microsoft.NET\Framework\v4.0.30319
|
||||
call %MSBuildDir%\msbuild WinFormsUI.Docking.sln /t:build /p:Configuration="Debug"
|
||||
call %MSBuildDir%\msbuild WinFormsUI.Docking.vs2010.sln /t:build /p:Configuration="Debug"
|
||||
@IF %ERRORLEVEL% NEQ 0 PAUSE
|
||||
@@ -1,3 +1,3 @@
|
||||
set msBuildDir=%WINDIR%\Microsoft.NET\Framework\v4.0.30319
|
||||
call %MSBuildDir%\msbuild WinFormsUI.Docking.sln /t:build /p:Configuration=Release /p:OutputPath=..\bin\net20\
|
||||
call %MSBuildDir%\msbuild WinFormsUI.Docking.vs2010.sln /t:build /p:Configuration=Release /p:OutputPath=..\bin\net20\
|
||||
@IF %ERRORLEVEL% NEQ 0 PAUSE
|
||||
@@ -1,3 +1,3 @@
|
||||
set msBuildDir=%WINDIR%\Microsoft.NET\Framework\v4.0.30319
|
||||
call %MSBuildDir%\msbuild WinFormsUI.Docking.sln /t:build /p:Configuration=Release /p:TargetFrameworkVersion=v4.0 /p:OutputPath=..\bin\net40\
|
||||
call %MSBuildDir%\msbuild WinFormsUI.Docking.vs2010.sln /t:build /p:Configuration=Release /p:TargetFrameworkVersion=v4.0 /p:OutputPath=..\bin\net40\
|
||||
@IF %ERRORLEVEL% NEQ 0 PAUSE
|
||||
Reference in New Issue
Block a user