604. Araxis Merge File Comparison Report

Produced by Araxis Merge on 2/1/2017 2:56:52 PM Eastern Standard Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

604.1 Files compared

# Location File Last Modified
1 C:\Araxis_Merge_Comprasion\Pub_un\BTSSS_CIF_122016.zip\BTSSS_CIF_12_20_16\clean\CRM\trunk\SDK\SampleCode\CS\Process\CustomWorkflowActivities\TestNet4Activity HelperClasses.cs Tue Dec 20 19:51:45 2016 UTC
2 Wed Feb 1 19:56:52 2017 UTC

604.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 0 0
Changed 0 0
Inserted 0 0
Removed 1 59

604.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

604.4 Active regular expressions

No regular expressions were active.

604.5 Comparison detail

1   // ======= ========== ========== ========== ========== ========== ========== ========== =        
2   //  This f ile is par t of the M icrosoft D ynamics CR M SDK Code  Samples.        
3   //        
4   //  Copyri ght (C) Mi crosoft Co rporation.   All righ ts reserve d.        
5   //        
6   //  This s ource code  is intend ed only as  a supplem ent to Mic rosoft        
7   //  Develo pment Tool s and/or o n-line doc umentation .  See the se other        
8   //  materi als for de tailed inf ormation r egarding M icrosoft c ode sample s.        
9   //        
10   //  THIS C ODE AND IN FORMATION  ARE PROVID ED "AS IS"  WITHOUT W ARRANTY OF  ANY        
11   //  KIND,  EITHER EXP RESSED OR  IMPLIED, I NCLUDING B UT NOT LIM ITED TO TH E        
12   //  IMPLIE D WARRANTI ES OF MERC HANTABILIT Y AND/OR F ITNESS FOR  A        
13   //  PARTIC ULAR PURPO SE.        
14   //        
15   // ======= ========== ========== ========== ========== ========== ========== ========== =        
16          
17   using Syst em;        
18          
19   namespace  Microsoft. Crm.Sdk.Sa mples        
20   {        
21           pu blic stati c class En tityName        
22           {        
23                    publ ic const s tring Acco unt = "acc ount";        
24                    publ ic const s tring Acti vityParty  = "activit yparty";        
25                    publ ic const s tring Camp aign = "ca mpaign";        
26                    publ ic const s tring Camp aignRespon se = "camp aignrespon se";        
27                    publ ic const s tring Comp etitor = " competitor ";        
28                    publ ic const s tring Cont act = "con tact";        
29                    publ ic const s tring Task  = "task";        
30           }        
31          
32           pu blic stati c class Ac tivityPart yAttribute s        
33           {        
34                    publ ic const s tring Part yId = "par tyid";        
35           }        
36          
37           pu blic stati c class Ca mpaignResp onseAttrib utes        
38           {        
39                    publ ic const s tring Cust omer = "cu stomer";        
40                    publ ic const s tring Rega rdingObjec tId = "reg ardingobje ctid";        
41                    publ ic const s tring Subj ect = "sub ject";        
42           }        
43          
44           pu blic stati c class Co ntactAttri butes        
45           {        
46                    publ ic const s tring Birt hdate = "b irthdate";        
47                    publ ic const s tring Full Name = "fu llname";        
48           }        
49          
50           pu blic stati c class Ta skAttribut es        
51           {        
52                    publ ic const s tring Subj ect = "sub ject";        
53           }        
54          
55           [A ttributeUs age(Attrib uteTargets .Class)]        
56           pu blic seale d class Pe rsistAttri bute : Att ribute        
57           {        
58           }        
59   }