-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPSLab.csproj
More file actions
30 lines (24 loc) · 1.24 KB
/
PSLab.csproj
File metadata and controls
30 lines (24 loc) · 1.24 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>
<OpenTapPackageDefinitionPath>package.xml</OpenTapPackageDefinitionPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<CreateOpenTapPackage>true</CreateOpenTapPackage>
<InstallCreatedOpenTapPackage>false</InstallCreatedOpenTapPackage>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<CreateOpenTapPackage>false</CreateOpenTapPackage>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="OpenTAP" Version="9.23.0" />
<OpenTapPackageReference Include="Python" Version="^3.2.0-rc.3" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)' == 'Release'">
<None Update="LICENSE" CopyToOutputDirectory="Always" />
<None Update="requirements.txt" CopyToOutputDirectory="Always" />
<None Update="*.py" CopyToOutputDirectory="Always" Link="Packages/PSLab/%(FileName)%(Extension)" />
</ItemGroup>
</Project>