replaced with Revit 2021.1 SDK from REVIT_2021_1_SDK.msi, 2020-08-01 12:42 PM 378425344 bytes

This commit is contained in:
Jeremy Tammik
2020-08-02 14:58:22 +02:00
parent 2e30e212f0
commit 7bb14ca727
61 changed files with 1406 additions and 504 deletions
@@ -0,0 +1,52 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- This target file is used for the entry projects (which implements the IExternalCommand, IExternalApplication and etc.) of Revit Addin.
It adds the way to create a signiture for the target file, which is required by Revit addin registry mechanism.
-->
<PropertyGroup Condition=" '$(Platform)' == 'x64' ">
<!--
Turn off warning CS1607 due to issues related to
64 bit compiler warnings for mscorlib.dll. This is known issue with
the CSC and AL .NET tools. They are incorrectly using the 32 bit
libraries when building. This is not, according to Microsoft, a fatal
warning and this workaround is the preferred solution.
-->
<NoWarn>1607</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>bin\Release\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<OutputPath>bin\Debug\</OutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(VersionInfo)">
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<PropertyGroup>
<MSLangTargets>$(MSBuildBinPath)\Microsoft.Csharp.targets</MSLangTargets>
</PropertyGroup>
<Import Project="$(MSLangTargets)" />
<!-- Make sure the projects using this targets file rebuild if this file changes
This must come after the import of the common targets -->
<ItemGroup>
<Reference Include="RevitAPI">
<SpecificVersion>False</SpecificVersion>
<HintPath>$(SolutionDir)..\..\..\..\$(ConfigurationName)$(PlatformName)\RevitAPI.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="RevitAPIUI">
<HintPath>$(SolutionDir)..\..\..\..\$(ConfigurationName)$(PlatformName)\RevitAPIUI.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="RevitAddInUtility">
<SpecificVersion>False</SpecificVersion>
<HintPath>$(SolutionDir)..\..\..\..\$(ConfigurationName)$(PlatformName)\RevitAddInUtility.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Autodesk.CivilAlignments.DBApplication">
<HintPath>$(SolutionDir)..\..\..\..\$(ConfigurationName)$(PlatformName)\Addins\CivilAlignments\Autodesk.CivilAlignments.DBApplication.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
</Project>
+4 -4
View File
@@ -31,19 +31,19 @@
This must come after the import of the common targets -->
<ItemGroup>
<Reference Include="ASObjectsMgd">
<HintPath>C:\Program Files\Autodesk\Revit 2021\AddIns\SteelConnections\ASObjectsMgd.dll</HintPath>
<HintPath>$(SolutionDir)..\..\..\..\$(ConfigurationName)$(PlatformName)\Addins\SteelConnections\ASObjectsMgd.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="ASGeometryMgd">
<HintPath>C:\Program Files\Autodesk\Revit 2021\AddIns\SteelConnections\ASGeometryMgd.dll</HintPath>
<HintPath>$(SolutionDir)..\..\..\..\$(ConfigurationName)$(PlatformName)\Addins\SteelConnections\ASGeometryMgd.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="ASCADLinkMgd">
<HintPath>C:\Program Files\Autodesk\Revit 2021\AddIns\SteelConnections\ASCADLinkMgd.dll</HintPath>
<HintPath>$(SolutionDir)..\..\..\..\$(ConfigurationName)$(PlatformName)\Addins\SteelConnections\ASCADLinkMgd.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="SteelConnectionsDB">
<HintPath>C:\Program Files\Autodesk\Revit 2021\AddIns\SteelConnections\Autodesk.SteelConnectionsDB.dll</HintPath>
<HintPath>$(SolutionDir)..\..\..\..\$(ConfigurationName)$(PlatformName)\Addins\SteelConnections\Autodesk.SteelConnectionsDB.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
+2 -2
View File
@@ -8,12 +8,12 @@
<ItemGroup>
<Reference Include="RevitAPI">
<SpecificVersion>False</SpecificVersion>
<HintPath>C:\Program Files\Autodesk\Revit 2021\RevitAPI.dll</HintPath>
<HintPath>$(SolutionDir)..\..\..\..\$(ConfigurationName)$(PlatformName)\RevitAPI.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="RevitAPIUI">
<SpecificVersion>False</SpecificVersion>
<HintPath>C:\Program Files\Autodesk\Revit 2021\RevitAPIUI.dll</HintPath>
<HintPath>$(SolutionDir)..\..\..\..\$(ConfigurationName)$(PlatformName)\RevitAPIUI.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
+3 -3
View File
@@ -32,16 +32,16 @@
<ItemGroup>
<Reference Include="RevitAPI">
<SpecificVersion>False</SpecificVersion>
<HintPath>C:\Program Files\Autodesk\Revit 2021\RevitAPI.dll</HintPath>
<HintPath>$(SolutionDir)..\..\..\..\$(ConfigurationName)$(PlatformName)\RevitAPI.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="RevitAPIUI">
<HintPath>C:\Program Files\Autodesk\Revit 2021\RevitAPIUI.dll</HintPath>
<HintPath>$(SolutionDir)..\..\..\..\$(ConfigurationName)$(PlatformName)\RevitAPIUI.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="RevitAddInUtility">
<SpecificVersion>False</SpecificVersion>
<HintPath>C:\Program Files\Autodesk\Revit 2021\RevitAddInUtility.dll</HintPath>
<HintPath>$(SolutionDir)..\..\..\..\$(ConfigurationName)$(PlatformName)\RevitAddInUtility.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>