2024-09-22 11:05:41 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>net48</TargetFramework>
|
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
|
<LangVersion>12.0</LangVersion>
|
|
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
|
|
<UseWPF>true</UseWPF>
|
|
|
|
|
|
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
|
|
|
|
|
|
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
|
|
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<Platforms>AnyCPU;x64</Platforms>
|
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
|
<DefineConstants>$(DefineConstants);REVIT2018</DefineConstants>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
|
|
|
|
<DefineConstants>$(DefineConstants);REVIT2018</DefineConstants>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="Bogus" Version="35.5.1" />
|
2024-10-08 16:21:39 +08:00
|
|
|
|
<PackageReference Include="EleCho.WpfSuite.FluentDesign" Version="0.0.1" />
|
2024-09-22 11:05:41 +08:00
|
|
|
|
<PackageReference Include="iNKORE.UI.WPF.Modern" Version="0.9.30" />
|
|
|
|
|
|
<PackageReference Include="LiteDB" Version="5.0.21" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.122" />
|
2024-10-08 16:21:39 +08:00
|
|
|
|
<PackageReference Include="Nice3point.Revit.Api.Adwindows" Version="2018.*" PrivateAssets="All" />
|
|
|
|
|
|
<PackageReference Include="Nice3point.Revit.Api.UIFramework" Version="2018.*" PrivateAssets="All" />
|
|
|
|
|
|
<PackageReference Include="Nice3point.Revit.Api.RevitAPI" Version="2018.*" PrivateAssets="All" />
|
2024-09-22 11:05:41 +08:00
|
|
|
|
<PackageReference Include="Nice3point.Revit.Api.RevitAPIUI" Version="2018.*" PrivateAssets="All" />
|
|
|
|
|
|
<PackageReference Include="Nice3point.Revit.Api.UIFrameworkServices" Version="2020.2.60" 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="JerryShaw.AduSkin" Version="1.1.1.11" />
|
|
|
|
|
|
<PackageReference Include="Nice3point.Revit.Toolkit" Version="2019.0.12" PrivateAssets="All" />
|
|
|
|
|
|
</ItemGroup>
|
2024-10-08 16:21:39 +08:00
|
|
|
|
<Import Project="..\Sai.Toolkit.Revit\Sai.Toolkit.Revit.projitems" Label="Shared" />
|
|
|
|
|
|
<Import Project="..\Sai.Toolkit.Core\Sai.Toolkit.Core.projitems" Label="Shared" />
|
2024-09-22 11:05:41 +08:00
|
|
|
|
|
|
|
|
|
|
<!--<Target Name="PreventRevitSDKCopyLocal" AfterTargets="ResolveReferences">
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
--><!-- 暂时解决Revit SDK文件被复制到输出文件夹的问题 --><!--
|
|
|
|
|
|
<ReferenceCopyLocalPaths Remove="@(ReferenceCopyLocalPaths)" Condition="'%(ReferenceCopyLocalPaths.NuGetPackageId)' == 'Autodesk.Revit.SDK'" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
</Target>-->
|
|
|
|
|
|
</Project>
|