Files
ShrlAlgoToolkit/ShrlAlgo.Addin.Test/ShrlAlgo.Addin.Test.csproj

57 lines
3.2 KiB
XML
Raw Normal View History

2024-09-22 11:05:41 +08:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<OutputType>Library</OutputType>
<LangVersion>12.0</LangVersion>
<ImplicitUsings>true</ImplicitUsings>
2024-09-22 11:05:41 +08:00
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<UseWPF>true</UseWPF>
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
2025-10-15 19:54:35 +08:00
<PlatformTarget>x64</PlatformTarget>
2024-09-22 11:05:41 +08:00
<ImplicitUsings>enable</ImplicitUsings>
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>
<RevitVersion>2018</RevitVersion>
<RootNamespace>ShrlAlgo.Addin.Test</RootNamespace>
2026-01-01 10:02:59 +08:00
<Platforms>AnyCPU;x64</Platforms>
2024-09-22 11:05:41 +08:00
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>$(DefineConstants);REVIT2018</DefineConstants>
2026-01-01 10:02:59 +08:00
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<DefineConstants>$(DefineConstants);REVIT2018</DefineConstants>
2024-09-22 11:05:41 +08:00
</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" />
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.135" />
<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" />
<PackageReference Include="Nice3point.Revit.Toolkit" Version="2019.*" PrivateAssets="All" />
2024-09-22 11:05:41 +08:00
</ItemGroup>
<ItemGroup>
2025-04-24 20:56:44 +08:00
<ProjectReference Include="..\ShrlAlgoToolkit.Core\ShrlAlgoToolkit.Core.csproj" />
</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>