jeremytammik / RevitLookup

Interactive Revit RFA and RVT project database exploration tool to view and navigate BIM element parameters, properties and relationships.
http://thebuildingcoder.typepad.com
MIT License
1.03k stars 294 forks source link

Message copy assembly to folder #138

Closed chuongmep closed 2 years ago

chuongmep commented 2 years ago

Summary of the Pull Request

Only update a message to know copy dll sucess or for user know using copy assembly in file csproj config What is this about: rider64_rhv9ug89Ed Description:

Quality Checklist

Nice3point commented 2 years ago

@chuongmep use only one line

изображение

Nice3point commented 2 years ago

Making a shared path a property is preferable

<PropertyGroup>
    <RevitAddinFolder>$(AppData)\Autodesk\Revit\Addins\$(RevitVersion)</RevitAddinFolder>
</PropertyGroup>
<Message Text="$(MSBuildProjectName) -> Copying files to $(RevitAddinFolder)"
         Importance="High"
         Condition="$(Configuration.Contains('Debug'))"/>
<Copy SourceFiles="@(AddinFiles)"
      DestinationFolder="$(RevitAddinFolder)"
      Condition="$(Configuration.Contains('Debug'))"/>
Nice3point commented 2 years ago

@chuongmep nice) update Copy DestinationFolder

chuongmep commented 2 years ago

Resolved