-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSampleApp.csproj
More file actions
23 lines (19 loc) · 781 Bytes
/
SampleApp.csproj
File metadata and controls
23 lines (19 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<LangVersion>latest</LangVersion>
<UserSecretsId>catbox-net-sample-app</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="10.0.0"/>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.0"/>
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.0"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\CatBox.NET\CatBox.NET.csproj"/>
</ItemGroup>
</Project>