File tree Expand file tree Collapse file tree 2 files changed +18
-4
lines changed Expand file tree Collapse file tree 2 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 20
20
<prepareNextVersionMsBuildSteps >
21
21
<step >
22
22
<msBuildCallArguments >
23
- <argument >Build\Remotion.Local .build</argument >
24
- <argument >/t:UpdateAssemblyInfosForRelease </argument >
23
+ <argument >Build\Customizations\UpdateVersion .build</argument >
24
+ <argument >/t:UpdateVersion </argument >
25
25
<argument >/property:Version={version}</argument >
26
26
</msBuildCallArguments >
27
27
<commitMessage >Update metadata to version '{version}'.</commitMessage >
30
30
<developmentForNextReleaseMsBuildSteps >
31
31
<step >
32
32
<msBuildCallArguments >
33
- <argument >Build\Remotion.Local .build</argument >
34
- <argument >/t:UpdateAssemblyInfosForDevelopment </argument >
33
+ <argument >Build\Customizations\UpdateVersion .build</argument >
34
+ <argument >/t:UpdateVersion </argument >
35
35
<argument >/property:Version={version}</argument >
36
36
</msBuildCallArguments >
37
37
<commitMessage >Update metadata to version '{version}'.</commitMessage >
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <Project xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
3
+
4
+ <Target Name =" UpdateVersion" >
5
+ <XmlPoke
6
+ XmlInputPath =" $(MSBuildThisFileDirectory)Version.props"
7
+ Namespaces =" < Namespace Prefix='x'
8
+ Uri='http://schemas.microsoft.com/developer/msbuild/2003'/> "
9
+ Query =" //x:PropertyGroup/x:Version"
10
+ Value =" $(Version)"
11
+ />
12
+ </Target >
13
+
14
+ </Project >
You can’t perform that action at this time.
0 commit comments