Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-08-21Updated build scripts for Windows.Jeremy Nelson
Call common winbuild.bat from debug and release scripts.
2019-04-05Fix Windows build.Kirill Osenkov
Update winbuild.bat for VS 16.0. Fix MSBuild condition. Don't build StandardClassification.csproj on Windows. Temporarily exclude some code to get the build working on Windows.
2019-01-16Don't fail Windows build if failed to restore NuGet.Kirill Osenkov
2018-06-14[Win32] MSBuild restore whole solutionMikayla Hutchinson
Else we end up with missing deps
2017-11-13winbuild.bat: try to use vswhere.exe to find MSBuild (#3337)Kirill Osenkov
2017-11-10Fixed 'Bug 60485 - RE RedundantBaseQualifierAnalyzer throws System.Ty… (#3330)Mike Krüger
* Fixed 'Bug 60485 - RE RedundantBaseQualifierAnalyzer throws System.TypeLoadException' * [Refactoring] Updated refactoring essentials reference. RE got refactored quite a bit this year.
2017-09-08Dev/toddgrun/master less and sass support (#3003)Todd Grunke
* Cherry pick c0d8c40ca0ffd9b0bd207c585cd5b5529f9de8b5 from master-roslyncompletion * Change mimetype names for less/scss to not conflict with that defined in the old web addin
2017-09-07Fix windows build (#3000)Kirill Osenkov
* Output a binary log when building on Windows. This is useful for investigating build issues. * Fully qualify a type. For some reason in Windows builds this fails to resolve because the namespace walk sees the "Microsoft.Runtime" namespace and fails. Not sure why it doesn't break on a Mac. Maybe that namespace isn't present on Mac inside the reference assemblies. * Make sure MD.Core.Tests imports MonoDevelop.props. Currently it has its own Signing properties and it doesn't specify PublicSign like all other projects. By doing what all other projects do we make sure this project is public-signed. * Add a missing reference from WindowsPlatform.Tests to MonoDevelop.Core.Tests.
2017-06-06Update winbuild.cmd to locate msbuild.exe from outside the standard paths. ↵Todd Grunke
(#2570)
2017-03-31Restore Paket references before building on Windows.Kirill Osenkov
The way the F# projects are set up right now at the bottom of the .fsproj we import StrongNamer.targets, but at the time of evaluation the packages are not restored yet and so the StrongNamer.targets are not imported. They are only imported during subsequent builds when the targets file is already present on disk. This change calls into Paket and restores packages for the MonoDevelop.FSharpBinding project, which includes StrongNamer. This ensures that by the time the build evaluation happens the targets file for StrongNamer is already on disk.
2017-03-30Fix comment in winbuild.bat (# is not a valid comment in .bat files) (#2067)Kirill Osenkov
2017-03-28[build] Require MSBuild 15 in winbuild.batMikayla Hutchinson
2017-02-10Fix winbuild.bat for VS2017 & RoslynMikayla Hutchinson
2016-10-12Bat cleanup (#1648)Mikayla Hutchinson
* Add missing ignore * Cleanup windows batch files * msysgit supports executing *.bat directly, so we don't need the .sh * pass arguments through to msbuild * move editbin call to msbuild * add git submodule update (like makefiles do) * default to debug build (like makefiles do) * use consistent NuGet.exe
2016-10-11Fixed windows build batch files.Mike Krüger
We've moved the nuget to a submodule.
2016-09-19[Windows] Nicer detection of editbin existence.Marius Ungureanu
2016-09-18[Windows] I will remember windows path sep one day.Marius Ungureanu
2016-09-18[Windows] Fix batch files, remove bash-isms.Marius Ungureanu
2016-09-18[Windows] Only use editbin when available.Marius Ungureanu
2016-09-18[Windows] Compile XS with largeaddressaware support.Marius Ungureanu
This allows XS on Windows to go over 1.2gb memory usage.
2015-11-30[Build] Restore RefactoringEssentials with NuGet 3.Matt Ward
The Test and DocGenerator project in the RefactoringEssentials solution have NuGet 3 packages in their packages.config file. To restore these without an error being displayed NuGet 3 needs to be used.
2015-10-01[Build] Enable release builds by default.Marius Ungureanu
2015-06-22WinBuild.bat/sh added restore RefactoringEssentials packages so ↵David Karlaš
RefactoringEssential.csproj hintpaths have .dll as expected
2015-03-02Added "nuget.exe restore Main.sln" to winbuild.batDavid Karlaš
2015-02-20Fixed winbuild.bat to be able to compile C#6David Karlaš
2014-12-08[Windows] Enable parallel build.Marius Ungureanu
2014-10-22Use WinDir registry instead of absolute path.Marius Ungureanu
2013-06-18Fix winbuild.batAlan McGovern
2011-02-02More .net 4.0 migration workLluis Sanchez Gual
2010-08-15Add scripts for build/run on WindowsMichael Hutchinson