File tree Expand file tree Collapse file tree 4 files changed +11
-3
lines changed
GitVersionTask/NugetAssets Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ You likely need to install `libcurl3`. Run `sudo get-get install libcurl3`
29
29
30
30
## Quick Links
31
31
- [ Documentation] [ docs ]
32
- [ Contributing] [ contribute ]
32
+ - [ Contributing] [ contribute ]
33
33
- [ Why GitVersion] [ why ]
34
34
- [ Usage] [ usage ]
35
35
- [ How it works] [ how ]
Original file line number Diff line number Diff line change @@ -551,6 +551,8 @@ II.2.12 <HandlesEvent />
551
551
<s : Boolean x : Key =" /Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002EJavaScript_002ECodeStyle_002ESettingsUpgrade_002EJsCodeFormatterSettingsUpgrader/@EntryIndexedValue" >True</s : Boolean >
552
552
<s : Boolean x : Key =" /Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002EJavaScript_002ECodeStyle_002ESettingsUpgrade_002EJsParsFormattingSettingsUpgrader/@EntryIndexedValue" >True</s : Boolean >
553
553
<s : Boolean x : Key =" /Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002EJavaScript_002ECodeStyle_002ESettingsUpgrade_002EJsWrapperSettingsUpgrader/@EntryIndexedValue" >True</s : Boolean >
554
+ <s : Boolean x : Key =" /Default/Environment/UnitTesting/DisabledProviders/=NUnit3x/@EntryIndexedValue" >False</s : Boolean >
555
+ <s : Boolean x : Key =" /Default/Environment/UnitTesting/NUnitProvider/UseCustomNUnit/@EntryValue" >False</s : Boolean >
554
556
<s : Boolean x : Key =" /Default/Environment/UnitTesting/SeparateAppDomainPerAssembly/@EntryValue" >True</s : Boolean >
555
557
<s : Boolean x : Key =" /Default/Environment/UnitTesting/ShadowCopy/@EntryValue" >False</s : Boolean >
556
558
Original file line number Diff line number Diff line change 13
13
<GitVersion_NoFetchEnabled Condition =" $(GitVersion_NoFetchEnabled) == ''" >false</GitVersion_NoFetchEnabled >
14
14
15
15
<!-- Property that enables WriteVersionInfoToBuildLog -->
16
+ <WriteVersionInfoToBuildLog Condition =" '$(WriteVersionInfoToBuildLog)' == '' and '$(NCrunch)' != '' " >false</WriteVersionInfoToBuildLog >
16
17
<WriteVersionInfoToBuildLog Condition =" '$(WriteVersionInfoToBuildLog)' == '' " >true</WriteVersionInfoToBuildLog >
17
18
18
19
<!-- Property that enables UpdateAssemblyInfo. Default to off for SDK builds -->
19
20
<UpdateAssemblyInfo Condition =" '$(UpdateAssemblyInfo)' == '' and '$(TargetFramework)' != '' " >false</UpdateAssemblyInfo >
21
+ <UpdateAssemblyInfo Condition =" '$(UpdateAssemblyInfo)' == '' and '$(NCrunch)' != '' " >false</UpdateAssemblyInfo >
20
22
<UpdateAssemblyInfo Condition =" '$(UpdateAssemblyInfo)' == '' " >true</UpdateAssemblyInfo >
21
23
22
24
<!-- Property that enables setting of Version -->
23
25
<UpdateVersionProperties Condition =" '$(UpdateVersionProperties)' == '' " >true</UpdateVersionProperties >
24
26
<UseFullSemVerForNuGet Condition =" '$(UseFullSemVerForNuGet)' == '' " >false</UseFullSemVerForNuGet >
25
27
26
28
<!-- Property that enables GetVersion -->
29
+ <GetVersion Condition =" '$(GetVersion)' == '' and '$(NCrunch)' != '' " >false</GetVersion >
27
30
<GetVersion Condition =" '$(GetVersion)' == '' " >true</GetVersion >
28
31
29
32
<GitVersionTaskLibrary >$(MSBuildThisFileDirectory)</GitVersionTaskLibrary >
63
66
</ItemGroup >
64
67
</Target >
65
68
66
- <Target Name =" GetVersion" BeforeTargets =" CoreCompile;GetAssemblyVersion;GenerateNuspec" Condition =" $(GetVersion) == 'true'" >
69
+ <Target Name =" GetVersion" BeforeTargets =" CoreCompile;GetAssemblyVersion;GenerateNuspec;_GenerateRestoreProjectSpec " Condition =" $(GetVersion) == 'true'" >
67
70
68
71
<GetVersion SolutionDirectory =" $(GitVersionPath)" NoFetch =" $(GitVersion_NoFetchEnabled)" >
69
72
<Output TaskParameter =" Major" PropertyName =" GitVersion_Major" />
Original file line number Diff line number Diff line change 12
12
<GitVersion_NoFetchEnabled Condition =" $(GitVersion_NoFetchEnabled) == ''" >false</GitVersion_NoFetchEnabled >
13
13
14
14
<!-- Property that enables WriteVersionInfoToBuildLog -->
15
+ <WriteVersionInfoToBuildLog Condition =" '$(WriteVersionInfoToBuildLog)' == '' and '$(NCrunch)' != '' " >false</WriteVersionInfoToBuildLog >
15
16
<WriteVersionInfoToBuildLog Condition =" '$(WriteVersionInfoToBuildLog)' == '' " >true</WriteVersionInfoToBuildLog >
16
17
17
18
<!-- Property that enables UpdateAssemblyInfo. Default to off for SDK builds -->
18
19
<UpdateAssemblyInfo Condition =" '$(UpdateAssemblyInfo)' == '' and '$(TargetFramework)' != '' " >false</UpdateAssemblyInfo >
20
+ <UpdateAssemblyInfo Condition =" '$(UpdateAssemblyInfo)' == '' and '$(NCrunch)' != '' " >false</UpdateAssemblyInfo >
19
21
<UpdateAssemblyInfo Condition =" '$(UpdateAssemblyInfo)' == '' " >true</UpdateAssemblyInfo >
20
22
23
+ <GetVersion Condition =" '$(GetVersion)' == '' and '$(NCrunch)' != '' " >false</GetVersion >
21
24
<GetVersion Condition =" '$(GetVersion)' == '' " >true</GetVersion >
22
25
23
26
<!-- Property that enables setting of Version -->
39
42
40
43
<Import Project =" $(GitVersionCustomizeTargetFile)" Condition =" '$(GitVersionCustomizeTargetFile)' != '' and Exists($(GitVersionCustomizeTargetFile))" />
41
44
42
- <Target Name =" WriteVersionInfoToBuildLog" BeforeTargets =" DispatchToInnerBuilds;GenerateNuspec" Condition =" $(WriteVersionInfoToBuildLog) == 'true'" >
45
+ <Target Name =" WriteVersionInfoToBuildLog" BeforeTargets =" DispatchToInnerBuilds;GenerateNuspec;_GenerateRestoreProjectSpec " Condition =" $(WriteVersionInfoToBuildLog) == 'true'" >
43
46
<WriteVersionInfoToBuildLog SolutionDirectory =" $(GitVersionPath)" NoFetch =" $(GitVersion_NoFetchEnabled)" />
44
47
</Target >
45
48
You can’t perform that action at this time.
0 commit comments