-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSelectionAggregate.csproj
More file actions
69 lines (55 loc) · 2.24 KB
/
SelectionAggregate.csproj
File metadata and controls
69 lines (55 loc) · 2.24 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
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<PlatformTarget>x64</PlatformTarget>
<OutputType>Library</OutputType>
<Nullable>disable</Nullable>
<Platforms>AnyCPU;x64</Platforms>
<AssemblyName>SelectionAggregate</AssemblyName>
<RootNamespace>SelectionAggregate</RootNamespace>
</PropertyGroup>
<!-- Revit API references -->
<ItemGroup>
<Reference Include="RevitAPI">
<HintPath>H:\Revit2026\Software\Revit 2026\RevitAPI.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="RevitAPIUI">
<HintPath>H:\Revit2026\Software\Revit 2026\RevitAPIUI.dll</HintPath>
<Private>false</Private>
</Reference>
</ItemGroup>
<!-- WPF Settings -->
<ItemGroup>
<Compile Update="Properties\Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<None Update="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
<!-- Embedded resources (icons) -->
<ItemGroup>
<Resource Include="Resources\icon16.png" />
<Resource Include="Resources\icon32.png" />
<Resource Include="Resources\filter.png" />
<Resource Include="Resources\undo.png" />
<Resource Include="Resources\save.png" />
</ItemGroup>
<!-- Debug ONLY: auto copy to Revit Addins folder -->
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<RevitAddinsDir>C:\ProgramData\Autodesk\Revit\Addins\2026\</RevitAddinsDir>
<AddinFileName>SelectionAggregate.addin</AddinFileName>
</PropertyGroup>
<Target Name="CopyRevitAddinFiles" AfterTargets="Build" Condition="'$(Configuration)' == 'Debug'">
<MakeDir Directories="$(RevitAddinsDir)" />
<Copy SourceFiles="$(TargetDir)$(AssemblyName).dll" DestinationFiles="$(RevitAddinsDir)$(AssemblyName).dll" SkipUnchangedFiles="true" />
<Copy SourceFiles="$(ProjectDir)$(AddinFileName)" DestinationFiles="$(RevitAddinsDir)$(AddinFileName)" SkipUnchangedFiles="true" />
</Target>
</Project>