31 lines
871 B
XML
31 lines
871 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<COMReference Include="Microsoft.Office.Interop.Excel">
|
|
<WrapperTool>tlbimp</WrapperTool>
|
|
<VersionMinor>9</VersionMinor>
|
|
<VersionMajor>1</VersionMajor>
|
|
<Guid>00020813-0000-0000-c000-000000000046</Guid>
|
|
<Lcid>0</Lcid>
|
|
<Isolated>false</Isolated>
|
|
<EmbedInteropTypes>true</EmbedInteropTypes>
|
|
</COMReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Accounting.BLI\Accounting.BLI.csproj" />
|
|
<ProjectReference Include="..\Accounting.DAL\Accounting.DAL.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|