-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTestStream.Runner.csproj
More file actions
63 lines (58 loc) · 2.84 KB
/
Copy pathTestStream.Runner.csproj
File metadata and controls
63 lines (58 loc) · 2.84 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<ToolCommandName>TestRunner</ToolCommandName>
<PackageOutputPath>../</PackageOutputPath>
<RootNamespace>nanoFramework.IoT.TestRunner</RootNamespace>
<AssemblyName>TestRunner</AssemblyName>
<PackageId>TestRunner</PackageId>
<Authors>nanoframework</Authors>
<Product>.NET nanoFramework Firmware Flasher</Product>
<Copyright>Copyright (c) .NET Foundation and Contributors</Copyright>
<Company>.NET nanoFramework</Company>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/nanoframework/nanoFramework.IoT.TestStream</RepositoryUrl>
<PackageProjectUrl>https://github.com/nanoframework/nanoFramework.IoT.TestStream</PackageProjectUrl>
<PackageIconUrl></PackageIconUrl>
<Description>.NET nanoFramework.IoT.TestRunner tool to manage self hosted agents.</Description>
<PublishSingleFile>true</PublishSingleFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
<PackageReference Include="Terminal.Gui" Version="1.17.1" />
</ItemGroup>
<ItemGroup>
<Content Include="..\agent\runner-configuration.json" Link="agent\%(RecursiveDir)%(Filename)%(Extension)">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\agent\start.sh" Link="agent\%(RecursiveDir)%(Filename)%(Extension)">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\agent\install.ps1" Link="agent\%(RecursiveDir)%(Filename)%(Extension)">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\agent\azp-agent-linux.dockerfile" Link="agent\%(RecursiveDir)%(Filename)%(Extension)">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\agent\install\**" Link="agent\install\%(RecursiveDir)%(Filename)%(Extension)">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\agent\config\configuration.json" Link="agent\config\%(RecursiveDir)%(Filename)%(Extension)">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<!-- <Content Include="..\agent\**" Link="agent\%(RecursiveDir)%(Filename)%(Extension)">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>-->
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>