Skip to content

Commit

Permalink
replace outdated descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
vpavel04 committed Jan 9, 2025
1 parent a8a5933 commit df21b45
Showing 5 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7.1
0.7.2
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.7.2
* Replace outdated decriptions

## 0.7.1
* Target for Revit Preview Release

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -20,14 +20,14 @@ git clone https://github.com/DynamoDS/DynamoRevit.git
- Get the branch for the version of Revit you want to use. For the latest release of Revit or a preview release, master may be fine. Otherwise, run `git checkout Revit2019` or similar.
- Make sure you have the following installed on your computer:
- For Revit 2024 and older: [.Net Framework 4.8 SDK](https://dotnet.microsoft.com/download)
- For Revit 2025 (currently Preview Release) and newer: [.NET 8 SDK](https://dotnet.microsoft.com/en-us/download/dotnet/8.0) for Windows x64
- For Revit 2025 and newer: [.NET 8 SDK](https://dotnet.microsoft.com/en-us/download/dotnet/8.0) for Windows x64
- Run `restorepackages.bat` from a command prompt with administrative privileges (Located in your _Github\DynamoRevit\src folder_)
Note: `restorepackages.bat` employs the use of a legacy tool `aget.exe`, which requires VC++ 2010 redistributable installed, before you can run it. When missing you will get an `msvcr100.dll not found` error.
- Copy `RevitAPI.dll`&`RevitAPIUI.dll` to the folder `DynamoRevit\lib\Revit Preview Release\net48`, these 2 dlls are in the folder same with `Revit.exe` installed on your computer
(if you want to build other branch of DynamoRevit, but corresponding version of Revit is not installed locally, you can get these dlls from https://www.nuget.org/ )
- Set the `RevitVersionNumber` environment variable to the Revit version you're building against (e.g. `2020`) either in the system environment or in the [user_locals.props](https://github.com/DynamoDS/DynamoRevit/blob/Revit2017/src/Config/user_local.props) file in your build folder.
- Open `DynamoRevit.All.sln` in Visual Studio, and select a build configuration (Debug | Release)
- For Revit 2025 (currently Preview Release) and newer you need Visual Studio 2022 (17.8.0 or newer)
- For Revit 2025 and newer you need Visual Studio 2022 (17.8.0 or newer)

### 2. Get or Build Dynamo Core

4 changes: 2 additions & 2 deletions src/AssemblySharedInfoGenerator/AssemblySharedInfo.tt
Original file line number Diff line number Diff line change
@@ -71,6 +71,6 @@ using System.Runtime.InteropServices;
<#+
int MajorVersion = 3;
int MinorVersion = 4;
int BuildNumber = 0;
int RevisionNumber = ((int)(DateTime.UtcNow - new DateTime(2024,1,1)).TotalDays)*10+((int)DateTime.UtcNow.Hour)/3;
int BuildNumber = 1;
int RevisionNumber = ((int)(DateTime.UtcNow - new DateTime(2025,1,1)).TotalDays)*10+((int)DateTime.UtcNow.Hour)/3;
#>
4 changes: 2 additions & 2 deletions src/DynamoRevitIcons/DynamoRevitIcons.csproj
Original file line number Diff line number Diff line change
@@ -34,9 +34,9 @@
ItemName="MyAssemblyIdentities"/>
</GetAssemblyIdentity>
<GenerateResource SdkToolsPath="$(TargetFrameworkSDKToolsDirectory)" UseSourcePath="true" Sources="$(ProjectDir)RevitNodesImages.resx" OutputResources="$(ProjectDir)RevitNodesImages.resources" References="$(FrameworkAssembliesPath)System.Drawing.dll" />
<AL TargetType="library" EmbedResources="$(ProjectDir)RevitNodesImages.resources" FileVersion="%(MyAssemblyIdentities.Version)" ProductName="Dynamo For Revit Preview Release" ProductVersion="%(MyAssemblyIdentities.Version)" Copyright="Copyright © Autodesk, Inc 2024" OutputAssembly="$(OutputPath)RevitNodes.customization.dll" />
<AL TargetType="library" EmbedResources="$(ProjectDir)RevitNodesImages.resources" FileVersion="%(MyAssemblyIdentities.Version)" ProductName="Dynamo For Revit Preview Release" ProductVersion="%(MyAssemblyIdentities.Version)" Copyright="Copyright © Autodesk, Inc 2025" OutputAssembly="$(OutputPath)RevitNodes.customization.dll" />
<GenerateResource SdkToolsPath="$(TargetFrameworkSDKToolsDirectory)" UseSourcePath="true" Sources="$(ProjectDir)DSRevitNodesUIImages.resx" OutputResources="$(ProjectDir)DSRevitNodesUIImages.resources" References="$(FrameworkAssembliesPath)System.Drawing.dll" />
<AL TargetType="library" EmbedResources="$(ProjectDir)DSRevitNodesUIImages.resources" FileVersion="%(MyAssemblyIdentities.Version)" ProductName="Dynamo For Revit Preview Release" ProductVersion="%(MyAssemblyIdentities.Version)" Copyright="Copyright © Autodesk, Inc 2024" OutputAssembly="$(OutputPath)DSRevitNodesUI.customization.dll" />
<AL TargetType="library" EmbedResources="$(ProjectDir)DSRevitNodesUIImages.resources" FileVersion="%(MyAssemblyIdentities.Version)" ProductName="Dynamo For Revit Preview Release" ProductVersion="%(MyAssemblyIdentities.Version)" Copyright="Copyright © Autodesk, Inc 2025" OutputAssembly="$(OutputPath)DSRevitNodesUI.customization.dll" />
</Target>
<Target Name="AfterBuildMigrated" AfterTargets="PostBuildEvent">
<ItemGroup>

0 comments on commit df21b45

Please sign in to comment.