File tree Expand file tree Collapse file tree 2 files changed +10
-11
lines changed Expand file tree Collapse file tree 2 files changed +10
-11
lines changed Original file line number Diff line number Diff line change 1
- <?xml version =" 1.0" encoding =" utf-8" ?>
2
- <Project >
3
-
1
+ <Project Sdk =" Microsoft.NET.Sdk" >
2
+ <!-- We're specifying the Sdk here to make appveyor happy, but this generates warning MSB4011 -->
4
3
<PropertyGroup >
5
4
<OutputType >Library</OutputType >
6
5
<Company >Rubberduck-VBA</Company >
17
16
<UnifyOutputPath Condition =" '$(UnifyOutputPath)' == ''" >false</UnifyOutputPath >
18
17
</PropertyGroup >
19
18
20
- <PropertyGroup Condition =" '$(AssemblyVersion)' == ''" >
19
+ <PropertyGroup Condition =" '$(Version)' == ''" >
20
+ <Version >2.2.0</Version >
21
21
<!--
22
22
This assembly version specification is considered nonstandard.
23
23
As such builds that do not override the assembly version generate a warning.
24
24
-->
25
- <AssemblyVersion >2.2.*</AssemblyVersion >
26
- <FileVersion Condition =" '$(FileVersion)' == '' " >2.2.*</FileVersion >
25
+ <AssemblyVersion Condition =" '$(AssemblyVersion)' == '' " >2.2.*</AssemblyVersion >
27
26
<!-- Wildcards are not deterministic, ensure build passes when setting wildcard versions -->
28
27
<Deterministic >False</Deterministic >
29
28
</PropertyGroup >
61
60
</Target >
62
61
<Import Project =" $(SolutionDir)\.nuget\NuGet.targets" Condition =" Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
63
62
64
- </Project >
63
+ </Project >
Original file line number Diff line number Diff line change @@ -38,14 +38,14 @@ install:
38
38
set PATH=C:\Program Files (x86)\MSBuild\15.0\Bin;%PATH%
39
39
40
40
# patch version specifiers in the base project
41
- # also patch version specifier in Core that's fixed to deal with XAML generated code
42
41
dotnet_csproj :
43
42
patch : true
44
- file : ' RubberduckBaseProject.csproj;*\Rubberduck.Core.csproj'
43
+ # patch version specifier in Core that's non-wildcard to deal with XAML generated code?
44
+ file : ' RubberduckBaseProject.csproj' # ;*\Rubberduck.Core.csproj'
45
45
version : ' {version}'
46
46
assembly_version : ' {version}'
47
- file_version : ' {version}'
48
- informational_version : ' {version}'
47
+ # file_version: '{version}'
48
+ # informational_version: '{version}'
49
49
50
50
51
51
before_build :
You can’t perform that action at this time.
0 commit comments