Skip to content

Commit a02583c

Browse files
committed
Fix build error caused by duplicate ComAutoWrapper key
1 parent 4aa07e0 commit a02583c

3 files changed

Lines changed: 16 additions & 16 deletions

File tree

ComAutoWrapper.csproj

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
88

99
<PackageId>ComAutoWrapper</PackageId>
10-
<Version>1.1.5.2</Version>
10+
<Version>1.1.5.3</Version>
1111
<Authors>pmonitor</Authors>
1212
<Company>Saját Fejlesztés</Company>
1313
<Description>Simple AutoWrapper-style COM helper for C#. Enables method and property calls on COM objects without Interop DLLs or dynamic.</Description>
@@ -16,8 +16,8 @@
1616
<PackageReadmeFile>Readme.md</PackageReadmeFile>
1717
<RepositoryUrl>https://github.com/pmonitor0/ComAutoWrapper</RepositoryUrl>
1818

19-
<AssemblyVersion>1.1.5.2</AssemblyVersion>
20-
<FileVersion>1.1.5.2</FileVersion>
19+
<AssemblyVersion>1.1.5.3</AssemblyVersion>
20+
<FileVersion>1.1.5.3</FileVersion>
2121
</PropertyGroup>
2222

2323
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
@@ -29,21 +29,16 @@
2929
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
3030
<DebugType>embedded</DebugType>
3131
</PropertyGroup>
32+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
33+
<DebugType>embedded</DebugType>
34+
</PropertyGroup>
3235
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
3336
<DebugType>embedded</DebugType>
3437
</PropertyGroup>
35-
<ItemGroup>
36-
<Reference Include="ComAutoWrapper">
37-
<HintPath>bin\x64\Release\net9.0\ComAutoWrapper.dll</HintPath>
38-
</Reference>
39-
</ItemGroup>
4038
<ItemGroup>
4139
<None Update="Readme.md">
4240
<Pack>True</Pack>
4341
<PackagePath>\</PackagePath>
4442
</None>
4543
</ItemGroup>
46-
<ItemGroup>
47-
<Folder Include="nupkg\" />
48-
</ItemGroup>
4944
</Project>

ComAutoWrapper.sln

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,32 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
4-
VisualStudioVersion = 17.12.35527.113 d17.12
4+
VisualStudioVersion = 17.12.35527.113
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ComAutoWrapper", "ComAutoWrapper.csproj", "{92240DBA-BD87-46AD-A75B-4983029F2608}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1010
Debug|Any CPU = Debug|Any CPU
1111
Debug|x64 = Debug|x64
12+
Debug|x86 = Debug|x86
1213
Release|Any CPU = Release|Any CPU
1314
Release|x64 = Release|x64
15+
Release|x86 = Release|x86
1416
EndGlobalSection
1517
GlobalSection(ProjectConfigurationPlatforms) = postSolution
1618
{92240DBA-BD87-46AD-A75B-4983029F2608}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
1719
{92240DBA-BD87-46AD-A75B-4983029F2608}.Debug|Any CPU.Build.0 = Debug|Any CPU
1820
{92240DBA-BD87-46AD-A75B-4983029F2608}.Debug|x64.ActiveCfg = Debug|x64
1921
{92240DBA-BD87-46AD-A75B-4983029F2608}.Debug|x64.Build.0 = Debug|x64
22+
{92240DBA-BD87-46AD-A75B-4983029F2608}.Debug|x86.ActiveCfg = Debug|Any CPU
23+
{92240DBA-BD87-46AD-A75B-4983029F2608}.Debug|x86.Build.0 = Debug|Any CPU
2024
{92240DBA-BD87-46AD-A75B-4983029F2608}.Release|Any CPU.ActiveCfg = Release|Any CPU
2125
{92240DBA-BD87-46AD-A75B-4983029F2608}.Release|Any CPU.Build.0 = Release|Any CPU
22-
{92240DBA-BD87-46AD-A75B-4983029F2608}.Release|x64.ActiveCfg = Release|x64
23-
{92240DBA-BD87-46AD-A75B-4983029F2608}.Release|x64.Build.0 = Release|x64
26+
{92240DBA-BD87-46AD-A75B-4983029F2608}.Release|x64.ActiveCfg = Release|x86
27+
{92240DBA-BD87-46AD-A75B-4983029F2608}.Release|x64.Build.0 = Release|x86
28+
{92240DBA-BD87-46AD-A75B-4983029F2608}.Release|x86.ActiveCfg = Release|x86
29+
{92240DBA-BD87-46AD-A75B-4983029F2608}.Release|x86.Build.0 = Release|x86
2430
EndGlobalSection
2531
GlobalSection(SolutionProperties) = preSolution
2632
HideSolutionNode = FALSE

WordStyleHelper.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using ComAutoWrapper;
2-
using System;
1+
using System;
32
using System.Collections.Generic;
43
using System.Linq;
54
using System.Drawing;

0 commit comments

Comments
 (0)