Skip to content

Commit 7b7df84

Browse files
committed
no message
1 parent e062d5e commit 7b7df84

File tree

117 files changed

+516
-485
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+516
-485
lines changed

NuGet/PZone.SDK.XRM.Plugins.nupkg

4.21 KB
Binary file not shown.

PZone SDK XRM Plug-ins.shfbproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
<RootNamespace>Documentation</RootNamespace>
1414
<Name>Documentation</Name>
1515
<!-- SHFB properties -->
16-
<FrameworkVersion>.NET Framework 4.5</FrameworkVersion>
16+
<FrameworkVersion>.NET Framework 4.5.2</FrameworkVersion>
1717
<OutputPath>docs\v8\</OutputPath>
1818
<HtmlHelpName>Documentation</HtmlHelpName>
19-
<Language>en-US</Language>
19+
<Language>ru-RU</Language>
2020
<SaveComponentCacheCapacity>100</SaveComponentCacheCapacity>
2121
<BuildAssemblerVerbosity>OnlyWarningsAndErrors</BuildAssemblerVerbosity>
2222
<HelpFileFormat>Website</HelpFileFormat>
@@ -34,7 +34,7 @@
3434
<Preliminary>False</Preliminary>
3535
<NamingMethod>MemberName</NamingMethod>
3636
<HelpTitle>PZone SDK XRM Plug-ins</HelpTitle>
37-
<CopyrightText>Copyright &amp;#169%3b 2017 Programming Zone</CopyrightText>
37+
<CopyrightText>Copyright &amp;#169%3b 2017-2018 Programming Zone</CopyrightText>
3838
<ContentPlacement>AboveNamespaces</ContentPlacement>
3939
<WarnOnMissingSourceContext>False</WarnOnMissingSourceContext>
4040
<DocumentationSources>

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,11 @@ PM> Install-Package PZone.SDK.XRM.Plugins
1919
</ul>
2020

2121

22-
## All My Dynamics CRM Libs
22+
## All My Dynamics CRM Libs and Tools
2323
<ul>
2424
<li><a href="https://zooy.github.io/PZone.SDK.XRM/">PZone SDK XRM</a> Common assembly for Microsoft Dynamics development.</li>
2525
<li><a href="https://zooy.github.io/PZone.SDK.XRM.Plugins/">PZone SDK XRM Plug-ins</a> Common assembly for Microsoft Dynamics CRM Plug-ins development.</li>
2626
<li><a href="https://zooy.github.io/PZone.SDK.XRM.Workflow/">PZone SDK XRM Workflow</a> Common assembly for Microsoft Dynamics CRM Workflow development.</li>
2727
<li><a href="https://zooy.github.io/PZone.SDK.XRM.Testing/">PZone SDK XRM Testing</a> Testing components for Microsoft Dynamics CRM development.</li>
28+
<li><a href="https://github.com/ZooY/Dynamics365.Tools">Dynamics 365 Tools</a> Components and tools for Microsoft Dynamics CRM 2016 / Dynamics 365.</li>
2829
</ul>

Source/PZone.Xrm.Plugins/PZone.Xrm.Plugins.csproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,8 @@
6464
<Reference Include="Newtonsoft.Json, Version=11.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
6565
<HintPath>..\packages\Newtonsoft.Json.11.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
6666
</Reference>
67-
<Reference Include="PZone.SDK.Xrm, Version=8.1.1.0, Culture=neutral, PublicKeyToken=4394d41fdc99a9c8, processorArchitecture=MSIL">
68-
<SpecificVersion>False</SpecificVersion>
69-
<HintPath>..\..\..\PZone SDK XRM\Source\PZone.Xrm\bin\Release\PZone.SDK.Xrm.dll</HintPath>
67+
<Reference Include="PZone.SDK.Xrm, Version=8.1.2.0, Culture=neutral, PublicKeyToken=4394d41fdc99a9c8, processorArchitecture=MSIL">
68+
<HintPath>..\packages\PZone.SDK.XRM.8.1.2\lib\net452\PZone.SDK.Xrm.dll</HintPath>
7069
</Reference>
7170
<Reference Include="System" />
7271
<Reference Include="System.DirectoryServices" />

Source/PZone.Xrm.Plugins/PluginBase.cs

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,35 @@ protected virtual void TraceException(Context context, Exception exception)
7676
context.TracingService.Trace("=== Plug-in Config ===");
7777
context.TracingService.Trace(UnsecureConfiguration);
7878
context.TracingService.Trace("=== Context ===");
79-
context.TracingService.Trace(context.SourceContext);
79+
context.TracingService.Trace(new
80+
{
81+
context.SourceContext.MessageName,
82+
context.SourceContext.Stage,
83+
context.SourceContext.PrimaryEntityId,
84+
context.SourceContext.PrimaryEntityName,
85+
context.SourceContext.SecondaryEntityName,
86+
context.SourceContext.UserId,
87+
context.SourceContext.InitiatingUserId,
88+
context.SourceContext.InputParameters,
89+
context.SourceContext.OutputParameters,
90+
context.SourceContext.SharedVariables,
91+
context.SourceContext.PreEntityImages,
92+
context.SourceContext.PostEntityImages,
93+
context.SourceContext.BusinessUnitId,
94+
context.SourceContext.CorrelationId,
95+
context.SourceContext.OperationId,
96+
context.SourceContext.RequestId,
97+
context.SourceContext.OrganizationId,
98+
context.SourceContext.OrganizationName,
99+
context.SourceContext.Depth,
100+
context.SourceContext.Mode,
101+
context.SourceContext.IsExecutingOffline,
102+
context.SourceContext.IsInTransaction,
103+
context.SourceContext.IsOfflinePlayback,
104+
context.SourceContext.IsolationMode,
105+
context.SourceContext.OperationCreatedOn,
106+
context.SourceContext.OwningExtension
107+
});
80108
context.TracingService.Trace("=== Exception ===");
81109
var ex = exception;
82110
while (ex != null)

Source/PZone.Xrm.Plugins/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("8.1.1.1")]
36-
[assembly: AssemblyFileVersion("8.1.1.1")]
35+
[assembly: AssemblyVersion("8.1.2.0")]
36+
[assembly: AssemblyFileVersion("8.1.2.0")]

Source/PZone.Xrm.Plugins/packages.config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
<package id="Microsoft.CrmSdk.CoreAssemblies" version="8.2.0.2" targetFramework="net452" />
44
<package id="Microsoft.IdentityModel" version="6.1.7600.16394" targetFramework="net452" />
55
<package id="Newtonsoft.Json" version="11.0.2" targetFramework="net452" />
6+
<package id="PZone.SDK.XRM" version="8.1.2" targetFramework="net452" />
67
</packages>

docs/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@
99
PM> Install-Package PZone.SDK.XRM.Plugins
1010
```
1111

12-
## All My Dynamics CRM Libs
12+
## All My Dynamics CRM Libs and Tools
1313
<ul>
1414
<li><a href="https://zooy.github.io/PZone.SDK.XRM/">PZone SDK XRM</a> Common assembly for Microsoft Dynamics development.</li>
1515
<li><a href="https://zooy.github.io/PZone.SDK.XRM.Plugins/">PZone SDK XRM Plug-ins</a> Common assembly for Microsoft Dynamics CRM Plug-ins development.</li>
1616
<li><a href="https://zooy.github.io/PZone.SDK.XRM.Workflow/">PZone SDK XRM Workflow</a> Common assembly for Microsoft Dynamics CRM Workflow development.</li>
1717
<li><a href="https://zooy.github.io/PZone.SDK.XRM.Testing/">PZone SDK XRM Testing</a> Testing components for Microsoft Dynamics CRM development.</li>
18+
<li><a href="https://github.com/ZooY/Dynamics365.Tools">Dynamics 365 Tools</a> Components and tools for Microsoft Dynamics CRM 2016 / Dynamics 365.</li>
1819
</ul>

0 commit comments

Comments
 (0)