-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExcos.Platform.AppHostTests.csproj
More file actions
59 lines (52 loc) · 1.92 KB
/
Copy pathExcos.Platform.AppHostTests.csproj
File metadata and controls
59 lines (52 loc) · 1.92 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<Target Name="GenerateProjectInfo" BeforeTargets="BeforeCompile">
<ItemGroup>
<ProjectInfoLines Include=".">
<Value>namespace MyProject { internal static class ProjectInfo { public const string Directory = @"$(MSBuildProjectDirectory)"; } }</Value>
</ProjectInfoLines>
</ItemGroup>
<WriteLinesToFile File="$(IntermediateOutputPath)/Generated/ProjectInfo.cs" Lines="@(ProjectInfoLines->'%(Value)')" Overwrite="true" />
<ItemGroup>
<Compile Include="$(IntermediateOutputPath)/Generated/ProjectInfo.cs" />
</ItemGroup>
</Target>
<ItemGroup>
<PackageReference Include="Aspire.Hosting.Testing">
<Version>13.1.2</Version>
</PackageReference>
<PackageReference Include="coverlet.collector">
<Version>8.0.0</Version>
</PackageReference>
<PackageReference Include="JunitXml.TestLogger">
<Version>8.0.0</Version>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk">
<Version>18.3.0</Version>
</PackageReference>
<PackageReference Include="xunit" />
<PackageReference Include="xunit.runner.visualstudio">
<Version>3.1.5</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
<!--<PackageReference Include="LimeFlight.OpenAPI.Diff" />-->
<ProjectReference Include="..\LimeFlight.OpenAPI.Diff\LimeFlight.OpenAPI.Diff.csproj" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Excos.Platform.AppHost\Excos.Platform.AppHost.csproj" />
</ItemGroup>
<ItemGroup>
<Using Include="System.Net" />
<Using Include="Microsoft.Extensions.DependencyInjection" />
<Using Include="Aspire.Hosting.ApplicationModel" />
<Using Include="Aspire.Hosting.Testing" />
<Using Include="Xunit" />
</ItemGroup>
</Project>