28 lines
855 B
XML
28 lines
855 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.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>
|
|
<ProjectReference Include="..\WinFormDi.BLI\WinFormDiApp.BLI.csproj" />
|
|
<ProjectReference Include="..\WinFormDiApp.BL\WinFormDiApp.BL.csproj" />
|
|
<ProjectReference Include="..\WinFormDiApp.DAL\WinFormDiApp.DAL.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|