-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathIronPython3Extension.csproj
More file actions
30 lines (26 loc) · 1.11 KB
/
IronPython3Extension.csproj
File metadata and controls
30 lines (26 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<OutputPath>$(SolutionDir)\package_output\DSIronPython3\extra\</OutputPath>
<AssemblyVersion>1.4.0</AssemblyVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DynamoVisualProgramming.Core" Version="3.0.0-beta6354">
<PrivateAssets>all</PrivateAssets>
<ExcludeAssets></ExcludeAssets>
</PackageReference>
<PackageReference Include="DynamoVisualProgramming.DynamoServices" Version="3.0.0-beta6354">
<PrivateAssets>all</PrivateAssets>
<ExcludeAssets></ExcludeAssets>
</PackageReference>
<PackageReference Include="IronPython" Version="3.4.2" />
<PackageReference Include="IronPython.StdLib" Version="3.4.2" />
</ItemGroup>
<ItemGroup>
<None Update="IronPython3Extension_ExtensionDefinition.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>