Граф коммитов

2 Коммитов

Автор SHA1 Сообщение Дата
Marek Habersack e987ac4585
[xabuild] Remove xabuild, unused pipelines (#8720)
Context: 4b33a6229c

Remove `tools/xabuild` completely.  It is no longer required; use
`dotnet-local.*` instead (4b33a622).

Additionally, remove unneeded pipelines.  `build.groovy` and
`azure-pipelines-oss.yaml` (among others) haven't been executed in
*years*; there is no need to keep these files around.
2024-02-15 18:36:06 -05:00
Jonathan Peppers e2c3b38cbc
[build] fix for case-sensitive file systems (#5381)
Context: https://docs.microsoft.com/visualstudio/msbuild/customize-your-build?view=vs-2019#customize-the-solution-build

@grendello was hitting a problem building Xamarin.Android on Linux,
every project would fail saying `PackDotNet` does not exist:

	$ make pack-dotnet
	...
	java-runtime.csproj : error MSB4057: The target "PackDotNet" does not exist in the project.

Reading the docs for `Before.*.sln.targets`:

> When MSBuild builds a solution file, it first translates it
> internally into a project file and then builds that. The generated
> project file imports `before.{solutionname}.sln.targets` before
> defining any targets...

`before.` is all lowercase.

Renaming the file to use `before` and not `Before` fixes the build
on Linux.
2020-12-08 10:25:25 -05:00