-
-
Notifications
You must be signed in to change notification settings - Fork 243
Expand file tree
/
Copy pathConsoleApp_net10.csproj
More file actions
22 lines (18 loc) · 888 Bytes
/
ConsoleApp_net10.csproj
File metadata and controls
22 lines (18 loc) · 888 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<RootNamespace>ConsoleApp</RootNamespace>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Linq.Async" Version="6.0.1" />
<!--<PackageReference Include="Z.DynamicLinq.NewtonsoftJson" Version="1.6.4" />
<PackageReference Include="Z.DynamicLinq.SystemTextJson" Version="1.6.4" />-->
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\System.Linq.Dynamic.Core.NewtonsoftJson\System.Linq.Dynamic.Core.NewtonsoftJson.csproj" />
<ProjectReference Include="..\..\src\System.Linq.Dynamic.Core.SystemTextJson\System.Linq.Dynamic.Core.SystemTextJson.csproj" />
</ItemGroup>
</Project>