-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
63 lines (55 loc) · 2.67 KB
/
Copy pathDirectory.Build.props
File metadata and controls
63 lines (55 loc) · 2.67 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
<Project>
<PropertyGroup>
<Platforms>x64</Platforms>
<OutputType>Library</OutputType>
<NoWarn>1701;1702;MSB3246</NoWarn>
<TargetFramework>net48</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<Configurations>D2020;D2021;D2022;D2023;D2024;Debug;Release</Configurations>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration.StartsWith(`D`))'">
<Optimization>false</Optimization>
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x64\Debug\$(RevitVersion)</OutputPath>
<DefineConstants>$(DefineConstants);DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration.StartsWith(`R`))'">
<Optimize>true</Optimize>
<DebugSymbols>false</DebugSymbols>
<OutputPath>bin\x64\Release\$(RevitVersion)</OutputPath>
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="$(RevitVersion) != ''">
<Version>$(RevitVersion).2.4</Version>
<FileVersion>$(RevitVersion).2.4</FileVersion>
<Company>Bim4Everyone</Company>
<Authors>Bim4Everyone</Authors>
<PackageTags>Bim4Everyone, revit, plugins</PackageTags>
<Copyright>Copyright © 2026</Copyright>
<PackageProjectUrl>https://github.com/Bim4Everyone/Bim4Everyone.RevitFiltration.git</PackageProjectUrl>
<RepositoryUrl>https://github.com/Bim4Everyone/Bim4Everyone.RevitFiltration.git</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
</PropertyGroup>
<ItemGroup Condition="$(RevitVersion) != ''">
<PackageReference Include="Autodesk.Revit.Sdk.Refs"/>
<PackageReference Include="Autodesk.Revit.Sdk.Refs.$(RevitVersion)"/>
<Reference Include="dosymep.Bim4Everyone">
<HintPath>$(AppData)\pyRevit\Extensions\BIM4Everyone.lib\dosymep_libs\libs\$(RevitVersion)\dosymep.Bim4Everyone.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="dosymep.Revit">
<HintPath>$(AppData)\pyRevit\Extensions\BIM4Everyone.lib\dosymep_libs\libs\$(RevitVersion)\dosymep.Revit.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Reference Include="pyRevitLabs.Json">
<HintPath>$(AppData)\pyRevit-Master\bin\pyRevitLabs.Json.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
</Project>