chr
2026-04-05 fe750b791d5b517cc4e9bc8e99a9a75139a0cfba
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
31
32
33
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
  <PropertyGroup>
    <AssemblyName>OpenTap.Plugins.BasicSteps</AssemblyName>
    <RootNamespace>OpenTap.Plugins.BasicSteps</RootNamespace>
     <!-- Re-enable this when we actually get around to documenting all basicsteps APIs -->
    <NoWarn>CS1591</NoWarn>
    <DocumentationFile>$(OutputPath)\OpenTap.Plugins.BasicSteps.xml</DocumentationFile>
    <PlatformTarget>AnyCPU</PlatformTarget>
  </PropertyGroup>
  <ItemGroup>
    <Compile Include="..\Engine\ObjectCloner.cs">
      <Link>ObjectCloner.cs</Link>
    </Compile>
    <Compile Include="..\Shared\AssemblyInfo.cs" Link="Shared\AssemblyInfo.cs" />
    <Compile Include="..\Shared\ExecutorInterop.cs" Link="Shared\ExecutorInterop.cs" />
    <Compile Include="..\Shared\OperatingSystem.cs" Link="Shared\OperatingSystem.cs" />
    <Compile Include="..\Shared\PipeReader.cs" Link="Shared\PipeReader.cs" />
    <Compile Include="..\Shared\ProcessCliAction.cs" Link="Shared\ProcessCliAction.cs" />
    <Compile Include="..\Shared\ReflectionHelper.cs" Link="Shared\ReflectionHelper.cs" />
    <Compile Include="..\Shared\SubProcessHost.cs" Link="Shared\SubProcessHost.cs" />
    <Compile Include="..\Shared\SudoHelper.cs" Link="Shared\SudoHelper.cs" />
  </ItemGroup>
 
  <!-- Comment this out for now, until we can get to adding all the missing XML comments
  <PropertyGroup Condition="'$(IsDebug)'!='true'">
    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
    <DocumentationFile>$(OutputPath)\OpenTap.Plugins.BasicSteps.xml</DocumentationFile>
  </PropertyGroup>
  -->
  <ItemGroup>
    <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="2.10.0" />
    <PackageReference Include="Microsoft.CSharp" Version="4.5.0" />
    <PackageReference Include="System.Collections.Immutable" Version="1.5.0" />
    <PackageReference Include="System.IO.Packaging" Version="4.5.0" />
    <PackageReference Include="System.Reflection.Metadata" Version="1.6.0" />
    <PackageReference Include="System.Runtime.Loader" Version="4.3.0" />
    <PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" />
    <PackageReference Include="System.ValueTuple" Version="4.5.0" />
    <ProjectReference Include="..\Engine\Tap.Engine.csproj" />
  </ItemGroup>
</Project>