2024-09-22 11:05:41 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>net48</TargetFramework>
|
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
|
<LangVersion>12.0</LangVersion>
|
2025-02-10 20:53:40 +08:00
|
|
|
|
<ImplicitUsings>true</ImplicitUsings>
|
2024-09-22 11:05:41 +08:00
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
|
|
<UseWPF>true</UseWPF>
|
|
|
|
|
|
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
|
|
|
|
|
|
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
|
2025-07-31 20:12:24 +08:00
|
|
|
|
<!--<PlatformTarget>x64</PlatformTarget>-->
|
2024-09-22 11:05:41 +08:00
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2025-07-31 20:12:24 +08:00
|
|
|
|
<!--<Platforms>x64</Platforms>-->
|
2025-07-11 09:20:23 +08:00
|
|
|
|
<AppendPlatformToOutputPath>false</AppendPlatformToOutputPath>
|
2024-09-22 11:05:41 +08:00
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
2025-02-10 20:53:40 +08:00
|
|
|
|
<RevitVersion>2018</RevitVersion>
|
|
|
|
|
|
<RootNamespace>ShrlAlgo.Addin.Test</RootNamespace>
|
2024-09-22 11:05:41 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
|
<DefineConstants>$(DefineConstants);REVIT2018</DefineConstants>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
|
|
|
|
<DefineConstants>$(DefineConstants);REVIT2018</DefineConstants>
|
|
|
|
|
|
</PropertyGroup>
|
2025-07-11 09:20:23 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Remove="Biaui\**" />
|
|
|
|
|
|
<EmbeddedResource Remove="Biaui\**" />
|
|
|
|
|
|
<None Remove="Biaui\**" />
|
|
|
|
|
|
<Page Remove="Biaui\**" />
|
|
|
|
|
|
</ItemGroup>
|
2024-09-22 11:05:41 +08:00
|
|
|
|
<ItemGroup>
|
2024-12-22 10:26:12 +08:00
|
|
|
|
<Reference Include="eTransmitForRevitDB" HintPath="..\libs\2018\eTransmitForRevitDB.dll" />
|
2025-09-04 22:39:00 +08:00
|
|
|
|
<PackageReference Include="Rubyer" Version="2.18.8" />
|
|
|
|
|
|
<PackageReference Include="ACadSharp" Version="3.1.12" />
|
|
|
|
|
|
<PackageReference Include="EleCho.WpfSuite" Version="0.10.20" />
|
2024-09-22 11:05:41 +08:00
|
|
|
|
<PackageReference Include="LiteDB" Version="5.0.21" />
|
2024-10-27 00:19:48 +08:00
|
|
|
|
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.135" />
|
2025-02-10 20:53:40 +08:00
|
|
|
|
<PackageReference Include="Nice3point.Revit.Api.Adwindows" Version="$(RevitVersion).*" PrivateAssets="All" />
|
|
|
|
|
|
<PackageReference Include="Nice3point.Revit.Api.UIFramework" Version="$(RevitVersion).*" PrivateAssets="All" />
|
|
|
|
|
|
<PackageReference Include="Nice3point.Revit.Api.RevitAPI" Version="$(RevitVersion).*" PrivateAssets="All" />
|
|
|
|
|
|
<PackageReference Include="Nice3point.Revit.Api.RevitAPIUI" Version="$(RevitVersion).*" PrivateAssets="All" />
|
|
|
|
|
|
<PackageReference Include="Nice3point.Revit.Api.UIFrameworkServices" Version="$(RevitVersion).*" PrivateAssets="All" />
|
2024-10-08 16:21:39 +08:00
|
|
|
|
<PackageReference Include="CommunityToolkit.Common" Version="8.3.2" />
|
|
|
|
|
|
<PackageReference Include="CommunityToolkit.Diagnostics" Version="8.3.2" />
|
|
|
|
|
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.3.2" />
|
2024-09-22 11:05:41 +08:00
|
|
|
|
<PackageReference Include="EPPlus.Core.Extensions" Version="2.4.0" />
|
2025-02-10 20:53:40 +08:00
|
|
|
|
<PackageReference Include="Nice3point.Revit.Toolkit" Version="2019.*" PrivateAssets="All" />
|
2024-09-22 11:05:41 +08:00
|
|
|
|
</ItemGroup>
|
2025-02-10 20:53:40 +08:00
|
|
|
|
<ItemGroup>
|
2025-04-24 20:56:44 +08:00
|
|
|
|
<ProjectReference Include="..\ShrlAlgoToolkit.Core\ShrlAlgoToolkit.Core.csproj" />
|
2025-02-10 20:53:40 +08:00
|
|
|
|
</ItemGroup>
|
2025-04-24 20:56:44 +08:00
|
|
|
|
<Import Project="..\ShrlAlgoToolkit.Revit\ShrlAlgoToolkit.Revit.projitems" Label="Shared" />
|
2024-09-22 11:05:41 +08:00
|
|
|
|
</Project>
|