2023-02-08 15:59:30 +03:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2023-03-23 17:13:48 +03:00
|
|
|
|
<PropertyGroup>
|
2023-04-07 07:19:00 +03:00
|
|
|
|
<TargetFrameworks>net472</TargetFrameworks>
|
2023-03-23 17:13:48 +03:00
|
|
|
|
<LangVersion>10</LangVersion>
|
|
|
|
|
<OutputType>Library</OutputType>
|
2023-03-31 15:27:31 +03:00
|
|
|
|
<RootNamespace>RhSolutions</RootNamespace>
|
2023-03-23 17:13:48 +03:00
|
|
|
|
<AssemblyName>RhSolutions.AddIn</AssemblyName>
|
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
|
2023-05-19 07:43:29 +03:00
|
|
|
|
<ExcelDnaPackCompressResources>false</ExcelDnaPackCompressResources>
|
2023-03-23 17:13:48 +03:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<StartupObject />
|
|
|
|
|
</PropertyGroup>
|
2023-03-27 13:55:58 +03:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net472|AnyCPU'">
|
2023-11-02 23:14:49 +03:00
|
|
|
|
<NoWarn>1701;1702</NoWarn>
|
2023-03-27 13:55:58 +03:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net472|AnyCPU'">
|
2023-11-02 23:14:49 +03:00
|
|
|
|
<NoWarn>1701;1702</NoWarn>
|
2023-03-27 13:55:58 +03:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net6.0-windows7.0|AnyCPU'">
|
2023-11-02 23:14:49 +03:00
|
|
|
|
<NoWarn>1701;1702</NoWarn>
|
2023-03-27 13:55:58 +03:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net6.0-windows7.0|AnyCPU'">
|
2023-11-02 23:14:49 +03:00
|
|
|
|
<NoWarn>1701;1702</NoWarn>
|
2023-03-27 13:55:58 +03:00
|
|
|
|
</PropertyGroup>
|
2023-03-23 17:13:48 +03:00
|
|
|
|
<ItemGroup>
|
2023-03-27 07:12:04 +03:00
|
|
|
|
<PackageReference Include="ExcelDna.AddIn" Version="1.6.0">
|
2023-11-02 23:14:49 +03:00
|
|
|
|
<TreatAsUsed>true</TreatAsUsed>
|
2023-03-27 07:12:04 +03:00
|
|
|
|
</PackageReference>
|
2023-03-23 17:13:48 +03:00
|
|
|
|
<PackageReference Include="ExcelDna.Integration" Version="1.6.0" />
|
2023-05-17 07:40:26 +03:00
|
|
|
|
<PackageReference Include="ExcelDna.IntelliSense" Version="1.6.0" />
|
2023-03-23 17:13:48 +03:00
|
|
|
|
<PackageReference Include="ExcelDna.Interop" Version="15.0.1" />
|
2023-04-07 07:18:42 +03:00
|
|
|
|
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="7.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Bcl.HashCode" Version="1.1.1" />
|
2023-03-23 17:13:48 +03:00
|
|
|
|
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
|
2023-05-16 07:43:57 +03:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="7.0.0" />
|
2023-03-27 07:12:04 +03:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Http" Version="7.0.0" />
|
2023-04-17 08:49:26 +03:00
|
|
|
|
<PackageReference Include="netDxf" Version="2022.11.2" />
|
2023-03-23 17:13:48 +03:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
2023-04-07 07:18:42 +03:00
|
|
|
|
<PackageReference Include="System.Buffers" Version="4.5.1" />
|
|
|
|
|
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" />
|
2023-03-23 17:13:48 +03:00
|
|
|
|
</ItemGroup>
|
2023-12-08 23:14:56 +03:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\RhSolutions.ProductSku\RhSolutions.ProductSku.csproj" />
|
|
|
|
|
</ItemGroup>
|
2023-12-09 23:59:57 +03:00
|
|
|
|
<ItemGroup>
|
2023-12-12 23:43:10 +03:00
|
|
|
|
<None Update="Images\Coupling.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2023-12-09 23:59:57 +03:00
|
|
|
|
<None Update="Images\DXF.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
<None Update="Images\RhSolutions.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2023-12-12 23:43:10 +03:00
|
|
|
|
<None Update="Images\Sleeve.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2023-12-09 23:59:57 +03:00
|
|
|
|
</ItemGroup>
|
2021-11-11 16:33:40 +03:00
|
|
|
|
</Project>
|