-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVConSharp.Examples.csproj
More file actions
26 lines (22 loc) · 1.1 KB
/
VConSharp.Examples.csproj
File metadata and controls
26 lines (22 loc) · 1.1 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
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\VConSharp\VConSharp.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="10.0.3" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.5" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="10.0.3" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.3" />
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.3" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.3" />
<PackageReference Update="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.103" />
</ItemGroup>
<PropertyGroup>
<OutputType>Exe</OutputType>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<UserSecretsId>be2946ba-cf7a-462f-bb02-4d18ab441e82</UserSecretsId>
<TargetFrameworks>net9.0;net10.0</TargetFrameworks>
</PropertyGroup>
</Project>