Skip to content

Commit

Permalink
Publishes FlubuCore 6.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mzorec committed Aug 26, 2021
1 parent b33d0f3 commit f51c29d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
@@ -1,5 +1,13 @@
## FlubuCore 6.2.0.0-preview1
## FlubuCore 6.2.0.03
- Added project type to vs solution/project browsing
- PackageTask: Option to Add Group of directories and files to package.
- PackageTask: Changed parameter name from ZipPrefix to ZipFileName
- Included directories cs files are now also watched when buildscript is reompiled
- Moved BeforeBuildExecution right after Configure Targets.
- Fixed compilation of usings when usings have trailing whitespace in included cs files
- Fixed Configuration Debug enum
- Fixed include of cs files in build script
- Fixed reload of script in interactive mode when build property was fetched from attribute after reload.

## FlubuCore 6.1.6.0

Expand Down
2 changes: 0 additions & 2 deletions src/FlubuCore/Scripting/DefaultBuildScript.cs
Expand Up @@ -257,8 +257,6 @@ protected virtual void AfterTargetExecution(ITaskContext context)
{
}

protected virtual void Before

protected virtual void BeforeBuildExecution(ITaskContext context)
{
}
Expand Down
4 changes: 0 additions & 4 deletions src/FlubuCore/Scripting/ScriptLoader.cs
Expand Up @@ -317,10 +317,6 @@ private IEnumerable<MetadataReference> GetBuildScriptReferences(CommandArguments
: _nugetPackageResolver.ResolveNugetPackagesFromDirectives(scriptAnalyzerResult.NugetPackageReferences, pathToBuildScript));

AddAssemblyReferencesFromCsproj(projectFileAnalyzerResult, assemblyReferences);
foreach (var objAss in assemblyReferences)
{
_log.LogInformation($"Assembly {objAss.Name}, Version: {objAss.Version}, FullPath: {objAss.FullPath}");
}

var assemblyReferencesLocations = assemblyReferences.Select(x => x.FullPath).ToList();
assemblyReferencesLocations.AddRange(FindAssemblyReferencesInDirectories(args.AssemblyDirectories));
Expand Down

0 comments on commit f51c29d

Please sign in to comment.