Skip to content

Commit a09e66b

Browse files
committed
Updated to the SDK Dlls to version 8.2 so that it can work with Dynamics 365
1 parent b9738da commit a09e66b

File tree

6 files changed

+24
-13
lines changed

6 files changed

+24
-13
lines changed

CrmCodeGenerator.VSPackage/Properties/AssemblyInfo.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using System;
1+
using Microsoft.VisualStudio.Shell;
2+
using System;
23
using System.Reflection;
34
using System.Resources;
45
using System.Runtime.CompilerServices;
@@ -32,5 +33,5 @@
3233
[assembly: AssemblyVersion("1.0.0.0")]
3334
[assembly: AssemblyFileVersion("1.0.0.0")]
3435

35-
36+
[assembly: ProvideBindingRedirection(AssemblyName = "Microsoft.Xrm.Sdk", NewVersion = "8.0.0.0", OldVersionLowerBound = "1.0.0.0", OldVersionUpperBound = "7.0.0.0")]
3637

CrmCodeGenerator.VSPackage/README.txt

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
Allows you to generate CRM 2011/2013/2015 schema files based on a T4 template.
1+
Allows you to generate CRM 2011/2013/2015/2016/8.2 schema files based on a T4 template.
22
Template is saved to project so that you can modify it as needed.
33

4+
Version 1.0.4.0
5+
[UPDATED] to Dynamics 365 (aka CRM 8.2)
6+
47
Version 1.0.3.3
58
[BUG] Fixed attributes named Id
69
[BUG] Fixed attributes name EntityTypeCode

CrmCodeGenerator.VSPackage/source.extension.vsixmanifest

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Id="d57cc223-384b-41cc-b5d0-814a71ce8d61" Version="1.0.3.3" Language="en-US" Publisher="Eric Labashosky" />
4+
<Identity Id="d57cc223-384b-41cc-b5d0-814a71ce8d61" Version="1.0.4.0" Language="en-US" Publisher="Eric Labashosky" />
55
<DisplayName>CrmCodeGenerator.VSPackage</DisplayName>
6-
<Description xml:space="preserve">Allows you to generate CRM 2011/2013/2015 schema files. Much like CrmSrvUtil.exe but with a lot more features; select entities (smaller code/assembly), runs in VisualStudio, T4 templates for control of how code is generated (also allows other languages), Template is saved to project, connection info save to SUO &amp; so that you can modify it as needed.
6+
<Description xml:space="preserve">Allows you to generate CRM 2011/2013/2015? schema files. Much like CrmSrvUtil.exe but with a lot more features; select entities (smaller code/assembly), runs in VisualStudio, T4 templates for control of how code is generated (also allows other languages), Template is saved to project, connection info save to SUO &amp; so that you can modify it as needed.
77
</Description>
88
<MoreInfo>https://crmcodegenerator.codeplex.com/</MoreInfo>
99
<License>license.txt</License>

CrmCodeGenerator.sln

+15-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 14
4-
VisualStudioVersion = 14.0.24720.0
4+
VisualStudioVersion = 14.0.25420.1
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "lib", "lib", "{FE93ED76-041D-4F4C-8569-FC05C2D982B7}"
77
ProjectSection(SolutionItems) = preProject
@@ -15,6 +15,20 @@ EndProject
1515
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CrmCodeGenerator.Controls", "CrmCodeGenerator.Controls\CrmCodeGenerator.Controls.csproj", "{CE17A54E-0661-429F-AFDC-272E8668B14E}"
1616
EndProject
1717
Global
18+
GlobalSection(CrmCodeGeneration) = preSolution
19+
UseSSL = True
20+
UseIFD = False
21+
UseOnline = False
22+
UseOffice365 = False
23+
ServerName = disco.crm.dynamics.com
24+
ServerPort = 443
25+
HomeRealm =
26+
Domain =
27+
WindowsAuthorization = False
28+
Organization = DEV-CRM
29+
IncludeEntities = account,contact,lead,opportunity,systemuser
30+
IncludeNonStandard = False
31+
EndGlobalSection
1832
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1933
Debug|Any CPU = Debug|Any CPU
2034
Debug|Mixed Platforms = Debug|Mixed Platforms
@@ -51,11 +65,4 @@ Global
5165
GlobalSection(ExtensibilityGlobals) = postSolution
5266
VisualSVNWorkingCopyRoot = .
5367
EndGlobalSection
54-
GlobalSection(CrmCodeGeneration) = preSolution
55-
CrmUrl = https://disco.crm.dynamics.com/XRMServices/2011/Discovery.svc
56-
Domain =
57-
Organization = DEV-CRM
58-
IncludeEntities = account,contact,lead,opportunity,systemuser
59-
IncludeNonStandard = False
60-
EndGlobalSection
6168
EndGlobal

lib/microsoft.crm.sdk.proxy.dll

69.5 KB
Binary file not shown.

lib/microsoft.xrm.sdk.dll

71.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)