-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathRevitAddIn.csproj
More file actions
30 lines (25 loc) · 1.27 KB
/
RevitAddIn.csproj
File metadata and controls
30 lines (25 loc) · 1.27 KB
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
<Project Sdk="Nice3point.Revit.Sdk/6.2.1">
<PropertyGroup>
<UseWPF>true</UseWPF>
<DeployAddin>true</DeployAddin>
<LaunchRevit>true</LaunchRevit>
<EnableDynamicLoading>true</EnableDynamicLoading>
<Configurations>Debug.R23;Debug.R24;Debug.R25;Debug.R26;Debug.R27</Configurations>
<Configurations>$(Configurations);Release.R23;Release.R24;Release.R25;Release.R26;Release.R27</Configurations>
</PropertyGroup>
<PropertyGroup>
<IsRepackable>true</IsRepackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Nice3point.Revit.Toolkit" Version="$(RevitVersion).*-*"/>
<PackageReference Include="Nice3point.Revit.Extensions" Version="$(RevitVersion).*-*"/>
<PackageReference Include="Nice3point.Revit.Api.RevitAPI" Version="$(RevitVersion).*-*"/>
<PackageReference Include="Nice3point.Revit.Api.RevitAPIUI" Version="$(RevitVersion).*-*"/>
<PackageReference Include="ILRepack" Version="2.0.44"/>
<PackageReference Include="JetBrains.Annotations" Version="2025.2.4" PrivateAssets="all"/>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\Icons\RibbonIcon16.png"/>
<Resource Include="Resources\Icons\RibbonIcon32.png"/>
</ItemGroup>
</Project>