-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathOpenTap.Python.ProjectTemplate.Api.csproj
More file actions
30 lines (26 loc) · 1.35 KB
/
Copy pathOpenTap.Python.ProjectTemplate.Api.csproj
File metadata and controls
30 lines (26 loc) · 1.35 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>netstandard2.0</TargetFramework>
<OutputPath>../bin/</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<RootNamespace>Python.Test.CSharpApi</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="OpenTAP" Version="9.19.3" />
<OpenTapPackageReference Include="Python" Version="3.0.0-rc.3" />
<AdditionalOpenTapPackage Include="PythonExamples" Version="3.0.0-rc.3" />
<!-- Uncomment one of these lines to get a test plan editor installed when you build. -->
<!-- <OpenTapPackageReference Include="Editor"/> -->
<!-- <OpenTapPackageReference Include="EditorX"/> -->
<!-- <OpenTapPackageReference Include="TUI"/> -->
</ItemGroup>
<ItemGroup>
<Reference Include="Microsoft.CSharp">
<HintPath>..\bin\Dependencies\Microsoft.CSharp.4.0.4.0\Microsoft.CSharp.dll</HintPath>
</Reference>
</ItemGroup>
<Target Name="AfterBuildLicensing" BeforeTargets="Build;PostBuildEvent">
<Exec Command=".\tap python search-path --add .. " WorkingDirectory="$(OutputPath)" />
</Target>
</Project>