-
Notifications
You must be signed in to change notification settings - Fork 17
/
dotnet.csproj
41 lines (36 loc) · 1.44 KB
/
dotnet.csproj
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>
<ImplicitUsings>enable</ImplicitUsings>
<TargetFramework>net8.0</TargetFramework>
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<!--
We have to disable default compile items or it'll inadvertently include
all .cs files beneath this one which may include a cloned .NET SDK repo.
-->
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
</PropertyGroup>
<ItemGroup>
<Compile Include="features\**\*.cs" />
<Compile Include="harness\**\*.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
<PackageReference Include="Temporalio" Version="1.3.1">
<!--
We have to make sure this isn't included transitively so it can be
overridden.
-->
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="XUnit.Assert" Version="2.5.3" />
</ItemGroup>
<ItemGroup>
<Using Include="Microsoft.Extensions.Logging" />
<Using Include="Xunit" />
</ItemGroup>
</Project>