-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
96 changed files
with
2,115 additions
and
658 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
Automate/Speckle.Automate.Sdk/DataAnnotations/SecretAttribute.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace Speckle.Automate.Sdk.DataAnnotations; | ||
|
||
/// <summary> | ||
/// If specified, the given function input will be redacted in all contexts. | ||
/// </summary> | ||
[AttributeUsage(AttributeTargets.All)] | ||
public sealed class SecretAttribute : Attribute { } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
ConnectorAutocadCivil/ConnectorAutocad2025/ConnectorAutocad2025.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<RootNamespace>Speckle.ConnectorAutocad</RootNamespace> | ||
<AssemblyName>SpeckleConnectorAutocad</AssemblyName> | ||
<TargetFramework>net8.0-windows</TargetFramework> | ||
<AssemblyTitle>ConnectorAutocad</AssemblyTitle> | ||
<Product>ConnectorAutocad</Product> | ||
<StartAction>Program</StartAction> | ||
<StartProgram>$(ProgramW6432)\Autodesk\AutoCAD 2025\acad.exe</StartProgram> | ||
<UseWPF>true</UseWPF> | ||
<DefineConstants>$(DefineConstants);AUTOCAD2025</DefineConstants> | ||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> | ||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> | ||
<PlatformTarget>x64</PlatformTarget> | ||
<RuntimeIdentifier>win-x64</RuntimeIdentifier> | ||
<ProduceReferenceAssembly>False</ProduceReferenceAssembly> | ||
</PropertyGroup> | ||
|
||
<Import Project="..\ConnectorAutocadCivil\ConnectorAutocadCivilShared.projitems" Label="Shared" /> | ||
|
||
<Target Name="Clean"> | ||
<RemoveDir Directories="$(TargetDir);$(AppData)\Autodesk\ApplicationPlugins\Speckle2AutoCAD2025" /> | ||
</Target> | ||
<Target Name="AfterBuildMigrated" AfterTargets="PostBuildEvent" Condition="$([MSBuild]::IsOsPlatform('Windows'))"> | ||
<Message Text="Calling 2025 post build" Importance="high" /> | ||
<CallTarget Condition="'$(Configuration)' == 'Debug' AND '$(IsDesktopBuild)' == true" Targets="AfterBuildDebug" /> | ||
</Target> | ||
<Target Name="AfterBuildDebug"> | ||
<ItemGroup> | ||
<SourceDLLs Include="$(TargetDir)\**\*.*" /> | ||
</ItemGroup> | ||
<Copy DestinationFolder="$(AppData)\Autodesk\ApplicationPlugins\Speckle2AutoCAD2025\%(RecursiveDir)" SourceFiles="@(SourceDLLs)" /> | ||
</Target> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Speckle.AutoCAD.API" Version="2025.0.0" IncludeAssets="compile;build" PrivateAssets="all" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<FrameworkReference Include="Microsoft.WindowsDesktop.App"></FrameworkReference> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\Core\Core\Core.csproj" /> | ||
<ProjectReference Include="..\..\DesktopUI2\DesktopUI2\DesktopUI2.csproj" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
ConnectorAutocadCivil/ConnectorCivil2025/ConnectorCivil2025.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0-windows</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
|
||
<RootNamespace>Speckle.ConnectorCivil</RootNamespace> | ||
<AssemblyName>SpeckleConnectorCivil</AssemblyName> | ||
<StartAction>Program</StartAction> | ||
<StartProgram>$(ProgramW6432)\Autodesk\AutoCAD 2025\acad.exe</StartProgram> | ||
<StartArguments> | ||
/ld "C:\Program Files\Autodesk\AutoCAD 2025\\AecBase.dbx" /product "C3D" /language | ||
"en-US" | ||
</StartArguments> | ||
|
||
<AssemblyTitle>ConnectorCivil2025</AssemblyTitle> | ||
<Product>ConnectorCivil2025</Product> | ||
<DefineConstants>$(DefineConstants);CIVIL2025;CIVIL;CIVIL2021_OR_GREATER;CIVIL2022_OR_GREATER;CIVIL2023_OR_GREATER;CIVIL2024_OR_GREATER;CIVIL2025_OR_GREATER</DefineConstants> | ||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> | ||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> | ||
<PlatformTarget>x64</PlatformTarget> | ||
<RuntimeIdentifier>win-x64</RuntimeIdentifier> | ||
<ProduceReferenceAssembly>False</ProduceReferenceAssembly> | ||
|
||
</PropertyGroup> | ||
<Import Project="..\ConnectorAutocadCivil\ConnectorAutocadCivilShared.projitems" Label="Shared" /> | ||
<Target Name="Clean"> | ||
<RemoveDir Directories="$(TargetDir);$(AppData)\Autodesk\ApplicationPlugins\Speckle2Civil3D2025" /> | ||
</Target> | ||
<Target Name="AfterBuildMigrated" AfterTargets="PostBuildEvent" Condition="$([MSBuild]::IsOsPlatform('Windows'))"> | ||
<Message Text="Calling 2025 post build" Importance="high" /> | ||
<CallTarget Condition="'$(Configuration)' == 'Debug' AND '$(IsDesktopBuild)' == true" Targets="AfterBuildDebug" /> | ||
</Target> | ||
<Target Name="AfterBuildDebug"> | ||
<ItemGroup> | ||
<SourceDLLs Include="$(TargetDir)\**\*.*" /> | ||
</ItemGroup> | ||
<Copy DestinationFolder="$(AppData)\Autodesk\ApplicationPlugins\Speckle2Civil3D2025\%(RecursiveDir)" SourceFiles="@(SourceDLLs)" /> | ||
</Target> | ||
|
||
<ItemGroup> | ||
<FrameworkReference Include="Microsoft.WindowsDesktop.App"></FrameworkReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\..\Core\Core\Core.csproj" /> | ||
<ProjectReference Include="..\..\DesktopUI2\DesktopUI2\DesktopUI2.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Speckle.AutoCAD.API" Version="2025.0.0" IncludeAssets="compile;build" PrivateAssets="all" /> | ||
<PackageReference Include="Speckle.Civil3D.API" Version="2025.0.0" /> | ||
</ItemGroup> | ||
</Project> |
Oops, something went wrong.