2021-11-20 13:52:28 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-03-22 14:18:34 +01:00
|
|
|
|
2020-08-04 15:49:54 +02:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<PackageId>zero.Core</PackageId>
|
|
|
|
|
<Version>0.1.0</Version>
|
2020-11-14 12:34:26 +01:00
|
|
|
<LangVersion>preview</LangVersion>
|
2021-11-09 12:11:16 +01:00
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2020-11-14 12:34:26 +01:00
|
|
|
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
|
2021-11-22 14:29:22 +01:00
|
|
|
<RootNamespace>zero</RootNamespace>
|
2020-08-04 15:49:54 +02:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-11-03 23:25:26 +01:00
|
|
|
<ItemGroup>
|
|
|
|
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-05-12 01:36:27 +02:00
|
|
|
<!--<ItemGroup>
|
|
|
|
|
<Compile Include="..\AssemblyInfo.cs" Link="Properties\AssemblyInfo.cs" />
|
|
|
|
|
</ItemGroup>-->
|
|
|
|
|
|
2020-03-22 14:47:59 +01:00
|
|
|
<ItemGroup>
|
2021-08-05 14:57:55 +02:00
|
|
|
<PackageReference Include="ClosedXML" Version="0.95.4" />
|
2022-01-02 17:19:45 +01:00
|
|
|
<PackageReference Include="FluentValidation" Version="10.3.6" />
|
2020-03-22 14:47:59 +01:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
|
2022-01-02 17:19:45 +01:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="6.0.1" />
|
2021-11-09 12:11:16 +01:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" />
|
2022-01-02 17:19:45 +01:00
|
|
|
<PackageReference Include="RavenDB.Client" Version="5.3.1" />
|
2022-01-08 00:24:04 +01:00
|
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.4" />
|
2022-01-02 17:19:45 +01:00
|
|
|
<PackageReference Include="System.Linq.Async" Version="5.1.0" />
|
2020-03-22 14:47:59 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-03-24 20:30:03 +01:00
|
|
|
</Project>
|