Skip to content

Commit

Permalink
Update DynamoCoreRuntime3 download url (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
avidit authored Jun 8, 2024
1 parent 6ce8b71 commit a840d66
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions IronPython3Tests/IronPython3Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,32 +1,27 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="DynamoVisualProgramming.Tests" Version="3.1.0-beta3874" />
<PackageReference Include="DynamoVisualProgramming.Tests" Version="3.1.0-beta3874" />
<PackageReference Include="coverlet.collector" Version="6.0.0" />
<PackageReference Include="JunitXml.TestLogger" Version="3.0.124" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="8.0.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\python3eval\python3eval.csproj" />
</ItemGroup>

<ItemGroup>
<None Update="TestServices.dll.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<Target Name="DownloadDynamoAndUnzip" BeforeTargets="Build">
<DownloadFile SourceUrl="https://dyn-builds-data.s3-us-west-2.amazonaws.com/DynamoCoreRuntime_3.1.0.3952_20240131T0007.zip" DestinationFolder="$(MSBuildProjectDirectory)" />
<Unzip SourceFiles="DynamoCoreRuntime_3.1.0.3952_20240131T0007.zip" DestinationFolder="$(OutputPath)\DynamoRuntime" OverwriteReadOnlyFiles="true" />
</Target>
<Target Name="DownloadDynamoAndUnzip" BeforeTargets="Build">
<DownloadFile SourceUrl="https://downloads.dynamobuilds.com/DynamoCoreRuntime3.1.0.zip" DestinationFolder="$(MSBuildProjectDirectory)" />
<Unzip SourceFiles="DynamoCoreRuntime3.1.0.zip" DestinationFolder="$(OutputPath)\DynamoRuntime" OverwriteReadOnlyFiles="true" />
</Target>
</Project>

0 comments on commit a840d66

Please sign in to comment.