-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnet80-agent.csproj
More file actions
31 lines (27 loc) · 1.38 KB
/
net80-agent.csproj
File metadata and controls
31 lines (27 loc) · 1.38 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>TestCentric.Agent</RootNamespace>
<TargetFramework>net8.0</TargetFramework>
<OutputPath>..\..\bin\$(Configuration)\agent\</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AssemblyName>testcentric-net80-agent</AssemblyName>
<ApplicationManifest>app.manifest</ApplicationManifest>
<ApplicationIcon>..\testcentric.ico</ApplicationIcon>
<AssemblyTitle>Net70 Pluggable Agent</AssemblyTitle>
<Description>Pluggable Agent for running tests under .NET 7.0</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="TestCentric.Agent.Core" Version="$(AgentCoreVersion)" />
<PackageReference Include="TestCentric.Engine.Api" Version="$(EngineVersion)" />
<PackageReference Include="TestCentric.Extensibility" Version="$(ExtensibilityVersion)" />
<PackageReference Include="TestCentric.Metadata" Version="$(MetadataVersion)" />
<PackageReference Include="TestCentric.InternalTrace" Version="$(InternalTraceVersion)" />
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="app.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>