1234567891011121314151617181920 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net6.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Autofac" Version="6.4.0" />
- <PackageReference Include="Autofac.Extensions.DependencyInjection" Version="8.0.0" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\OASystem.Api\OASystem.API.csproj" />
- </ItemGroup>
- </Project>
|