Skip to content

Commit

Permalink
Remove Microsoft Publisher from the solution #342
Browse files Browse the repository at this point in the history
  • Loading branch information
jozefizso committed Aug 16, 2022
1 parent c51f6de commit b97c8cb
Show file tree
Hide file tree
Showing 257 changed files with 4 additions and 54,791 deletions.
1 change: 0 additions & 1 deletion Source/ClientApplication/ClientApplication.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
<ProjectReference Include="..\Outlook\OutlookApi.csproj" />
<ProjectReference Include="..\OWC10\OWC10Api.csproj" />
<ProjectReference Include="..\PowerPoint\PowerPointApi.csproj" />
<ProjectReference Include="..\Publisher\PublisherApi.csproj" />
<ProjectReference Include="..\VBIDE\VBIDEApi.csproj" />
<ProjectReference Include="..\Word\WordApi.csproj" />
</ItemGroup>
Expand Down
6 changes: 0 additions & 6 deletions Source/NetOffice.sln
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MSComctlLibApi", "MSComctlL
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MSDATASRCApi", "MSDATASRC\MSDATASRCApi.csproj", "{9D83E8F2-4EFD-4A2E-88CE-9F5943620DB6}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PublisherApi", "Publisher\PublisherApi.csproj", "{044A2BC3-7F84-4BEC-8B99-9E3432FAD88E}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetOffice.Tests", "NetOffice.Tests\NetOffice.Tests.csproj", "{67372CD1-E220-44DA-AB36-F489A593923C}"
EndProject
Global
Expand Down Expand Up @@ -110,10 +108,6 @@ Global
{9D83E8F2-4EFD-4A2E-88CE-9F5943620DB6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9D83E8F2-4EFD-4A2E-88CE-9F5943620DB6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9D83E8F2-4EFD-4A2E-88CE-9F5943620DB6}.Release|Any CPU.Build.0 = Release|Any CPU
{044A2BC3-7F84-4BEC-8B99-9E3432FAD88E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{044A2BC3-7F84-4BEC-8B99-9E3432FAD88E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{044A2BC3-7F84-4BEC-8B99-9E3432FAD88E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{044A2BC3-7F84-4BEC-8B99-9E3432FAD88E}.Release|Any CPU.Build.0 = Release|Any CPU
{67372CD1-E220-44DA-AB36-F489A593923C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{67372CD1-E220-44DA-AB36-F489A593923C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{67372CD1-E220-44DA-AB36-F489A593923C}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand Down
1 change: 0 additions & 1 deletion Source/NetOffice/KeyTokens.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,4 @@ OWC10Api, Version=1.8.1.0, Culture=neutral, PublicKeyToken=a2b945645f1c78b9
PowerPointApi, Version=1.8.1.0, Culture=neutral, PublicKeyToken=f3aefb8851e52dd2
VBIDEApi, Version=1.8.1.0, Culture=neutral, PublicKeyToken=931cec8882205047
WordApi, Version=1.8.1.0, Culture=neutral, PublicKeyToken=f66d74591aaf8089
PublisherApi, Version=1.8.1.0, Culture=neutral, PublicKeyToken=2133a4c2cfc56bf6
IExcelApi, Version=1.8.1.0, Culture=neutral, PublicKeyToken=c507a5667bd1b6bd
1 change: 0 additions & 1 deletion Source/NetOffice/Loader/CurrentAppDomain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ internal class CurrentAppDomain
private static readonly string[] _assemblyNames = new string[] {
"OfficeApi.dll", "ExcelApi.dll", "WordApi.dll",
"OutlookApi.dll", "PowerPointApi.dll", "AccessApi.dll",
"PublisherApi.dll",
"VBIDEApi.dll"
};
#endregion
Expand Down
15 changes: 1 addition & 14 deletions Source/Office/Tools/ApplicationIdentifiers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,7 @@ public enum ApplicationType
/// <summary>
/// MS Project
/// </summary>
MS_Project = 7,

/// <summary>
/// Publisher
/// </summary>
Publisher = 8
MS_Project = 7
}

static ApplicationIdentifiers()
Expand All @@ -65,7 +60,6 @@ static ApplicationIdentifiers()
PowerPoint = new Guid("91493442-5A91-11CF-8700-00AA0060263B");
Access = new Guid("68CCE6C0-6129-101B-AF4E-00AA003F0F07");
MS_Project = new Guid("00020AFF-0000-0000-C000-000000000046");
Publisher = new Guid("0002123E-0000-0000-C000-000000000046");
}

/// <summary>
Expand Down Expand Up @@ -98,11 +92,6 @@ static ApplicationIdentifiers()
/// </summary>
public static Guid MS_Project { get; private set; }

/// <summary>
/// 0002123E-0000-0000-C000-000000000046
/// </summary>
public static Guid Publisher { get; private set; }

/// <summary>
/// Compare the id with application interface id's.
/// (Typical you got with comProxy.GetType().GUID)
Expand All @@ -123,8 +112,6 @@ public static ApplicationType IsApplication(Guid id)
return ApplicationType.Access;
if (id == MS_Project)
return ApplicationType.MS_Project;
if (id == Publisher)
return ApplicationType.Publisher;
return ApplicationType.None;
}

Expand Down
5 changes: 0 additions & 5 deletions Source/Office/Tools/MultiRegisterAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,6 @@ public enum RegisterIn
/// MS Access in any version
/// </summary>
Access = 4,

/// <summary>
/// MS Publisher
/// </summary>
Publisher = 7,
}

/// <summary>
Expand Down
26 changes: 0 additions & 26 deletions Source/Publisher/AssemblyInfo.cs

This file was deleted.

Loading

0 comments on commit b97c8cb

Please sign in to comment.