Skip to content

Commit c692878

Browse files
committed
Clean changelog and add release plugin
1 parent 34ab22a commit c692878

File tree

2 files changed

+21
-11
lines changed

2 files changed

+21
-11
lines changed

CHANGELOG.md

+15-7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,23 @@
1-
Plugin changelog
2-
====================
1+
# gradle-msbuild-plugin changelog
32

4-
2.10
5-
-------
3+
## 2.12
4+
5+
### Changed
6+
* `AssemblyInfoVersionPatcher` task now also supports setting AssemblyInformationalVersion
7+
8+
9+
## 2.10
10+
11+
### Changed
612
* assemblyInfoPatcher is now automatically enabled if a version is provided
7-
* added dotnetAssemblyFile / dotnetDebugFile / dotnetArtifacts properties on msbuild projects
813
* removed input/output for msbuild, it wasn't working properly
914

15+
### Added
16+
* added dotnetAssemblyFile / dotnetDebugFile / dotnetArtifacts properties on msbuild projects
17+
1018

11-
2.9
12-
-------
19+
## 2.9
1320

21+
### Added
1422
* Added support for assemblyInfoPatcher task
1523
* task will hook before msbuild, and patch AssemblyInfo.cs/fs with provided version number

build.gradle

+6-4
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ import org.gradle.internal.os.OperatingSystem;
22

33
plugins {
44
id 'nu.studer.plugindev' version '1.0.3'
5-
id "com.jfrog.bintray" version "1.2"
6-
id "com.ullink.msbuild" version "2.8"
7-
id "com.ullink.nuget" version "2.7"
5+
id 'com.jfrog.bintray' version '1.2'
6+
id 'com.ullink.msbuild' version '2.11'
7+
id 'com.ullink.nuget' version '2.13'
8+
id 'net.researchgate.release' version '2.3.4'
89
}
910

1011
group = 'com.ullink.gradle'
@@ -36,7 +37,7 @@ task generateExe(dependsOn: msbuild, type: Exec) {
3637
workingDir = msbuild.mainProject.getProjectPropertyPath('OutputPath')
3738
commandLine = [file('packages/ILRepack.1.26.0/tools/ILRepack.exe'),
3839
'/log', '/wildcards', '/internalize', '/ndebug',
39-
'/out:'+file("src/main/resources/META-INF/bin/ProjectFileParser.exe"),
40+
'/out:'+file('src/main/resources/META-INF/bin/ProjectFileParser.exe'),
4041
msbuild.mainProject.properties.TargetPath,
4142
'Newtonsoft.Json.dll']
4243
}
@@ -70,4 +71,5 @@ plugindev {
7071
done()
7172
}
7273

74+
project.tasks.afterReleaseBuild.dependsOn project.tasks.bintrayUpload
7375

0 commit comments

Comments
 (0)