-
Notifications
You must be signed in to change notification settings - Fork 585
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added initial implementation of DynamicsCRMHelper #1009
Conversation
What I was wondering about: |
Aehm that's not a good idea |
Ok, so I'll remove those packages and connect differently. I wonder why the mono build on Travis is failing, while the AppVeyor build with MSBuild works... |
@forki: How sounds using Fsharp Data TypeProviders for connecting to the CRM to you? Seems if I'd need them as NuGet packages too however. |
we do we need to add packages at all? |
Ok so I checked my options and I don't see an alternative to the CRM packages that does not produce a lot of overhead for me. |
mhm. I think we should create an addition project then. We already have way to much stuff in this repo. |
All right then |
sorry. Is there a command line version we can call from here? |
I just began developing a command line version, I'll check with my boss whether I am allowed to open source it. Are you thinking of making it a complete standalone tool, or a subproject of FAKE? |
What we usually do is to create only a wrapper around the command line in fake (That stuff that calls the command line tool), |
Yes thats what I did for the SolutionPackager part, but I guess you mean for this whole module then. |
Ok so it goes on. I am allowed to open source the tool. |
f096ade
to
329cea2
Compare
Ok, my command line tool is done for now: https://github.com/DigitalFlow/Dynamics-CRM-Solution-Exchanger |
@forki: Can you imagine why the build is failing? Local builds run just fine, I didn't add any assemblies that would need to be referenced and the previous build passed at least for the previous commit, while I only changed an XML tag in the current commit... |
seems unrelated. mono fails with mono 4.2 issue and appveyor with nuget. |
@@ -0,0 +1,143 @@ | |||
[<AutoOpen>] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please remove the autoopen
Ok, I removed the auto open tag. |
c7acf06
to
869a2a4
Compare
869a2a4
to
6784b88
Compare
Ok, so I just added some documentation and some comments. |
Added initial implementation of DynamicsCRMHelper
cool. thx |
Hey all,
I'm currently implementing a new helper for Dynamics CRM.
The use of it is to be able to export solutions (update component containers) from Dynamics CRM and being able to store those solutions in a VCS or even import them before doing unit tests for ensuring that the system is in the correct state for doing the unit tests.
Tests as well as a possibility for downlevelling the solution archive into xml representation will follow.
Kind Regards,
DigitalFlow