-
Notifications
You must be signed in to change notification settings - Fork 15
/
Tuna.Revit.Build.props
90 lines (80 loc) · 2.91 KB
/
Tuna.Revit.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<Project>
<PropertyGroup>
<Configurations>
Debug;Release;
Rvt_16_Debug;Rvt_16_Release;
Rvt_17_Debug;Rvt_17_Release;
Rvt_18_Debug;Rvt_18_Release;
Rvt_19_Debug;Rvt_19_Release;
Rvt_20_Debug;Rvt_20_Release;
Rvt_21_Debug;Rvt_21_Release;
Rvt_22_Debug;Rvt_22_Release;
Rvt_23_Debug;Rvt_23_Release;
Rvt_24_Debug;Rvt_24_Release;
Rvt_25_Debug;Rvt_25_Release;
</Configurations>
<TunaVer>17</TunaVer>
<PlatformTarget>x64</PlatformTarget>
<LangVersion>preview</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration.StartsWith(Rvt_16))'">
<RvtVersion>2016</RvtVersion>
<DefineConstants>Rvt_16</DefineConstants>
<TargetFramework>net452</TargetFramework>
<Version>2016.2.$(TunaVer)</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration.StartsWith(Rvt_17))'">
<RvtVersion>2017</RvtVersion>
<DefineConstants>Rvt_17</DefineConstants>
<TargetFramework>net46</TargetFramework>
<Version>2017.2.$(TunaVer)</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration.StartsWith(Rvt_18))'">
<RvtVersion>2018</RvtVersion>
<DefineConstants>Rvt_18</DefineConstants>
<TargetFramework>net46</TargetFramework>
<Version>2018.2.$(TunaVer)</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration.StartsWith(Rvt_19))'">
<RvtVersion>2019</RvtVersion>
<DefineConstants>Rvt_19</DefineConstants>
<TargetFramework>net47</TargetFramework>
<Version>2019.0.$(TunaVer)</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration.StartsWith(Rvt_20))'">
<RvtVersion>2020</RvtVersion>
<DefineConstants>Rvt_20</DefineConstants>
<TargetFramework>net47</TargetFramework>
<Version>2020.0.$(TunaVer)</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration.StartsWith(Rvt_21))'">
<RvtVersion>2021</RvtVersion>
<DefineConstants>Rvt_21</DefineConstants>
<TargetFramework>net48</TargetFramework>
<Version>2021.0.$(TunaVer)</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration.StartsWith(Rvt_22))'">
<RvtVersion>2022</RvtVersion>
<DefineConstants>Rvt_22</DefineConstants>
<TargetFramework>net48</TargetFramework>
<Version>2022.0.$(TunaVer)</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration.StartsWith(Rvt_23))'">
<RvtVersion>2023</RvtVersion>
<DefineConstants>Rvt_23</DefineConstants>
<TargetFramework>net48</TargetFramework>
<Version>2023.0.$(TunaVer)</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration.StartsWith(Rvt_24))'">
<RvtVersion>2024</RvtVersion>
<DefineConstants>Rvt_24</DefineConstants>
<TargetFramework>net48</TargetFramework>
<Version>2024.0.$(TunaVer)</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration.StartsWith(Rvt_25))'">
<RvtVersion>2025</RvtVersion>
<DefineConstants>Rvt_25</DefineConstants>
<TargetFramework>net8.0-windows</TargetFramework>
<Version>2025.0.$(TunaVer)</Version>
</PropertyGroup>
</Project>