-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathnetbricks.csproj
More file actions
24 lines (24 loc) · 1.16 KB
/
netbricks.csproj
File metadata and controls
24 lines (24 loc) · 1.16 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Title>NetBricks</Title>
<RootNamespace>NetBricks</RootNamespace>
<PackageId>NetBricks</PackageId>
<Version>2.0.1</Version>
<Authors>Peter Lasne</Authors>
<Company>Microsoft</Company>
<PackageDescription>Commonly used tooling for dotnetcore, including configuration management, logging, etc.</PackageDescription>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/plasne/netbricks</RepositoryUrl>
<IsPackable>true</IsPackable>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.13.2" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.4" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.4" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.4" />
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.4" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
</Project>