Giter Club home page Giter Club logo

smartconnectorsamples's People

Contributors

darthstem avatar bowman-jm avatar

Stargazers

 avatar  avatar  avatar Pravin  avatar Hong Dang Nguyen avatar  avatar dzungthan avatar yigit Ahmet seckiner avatar Karim Hussain avatar Benjamin Roswall avatar  avatar Richard Harrison avatar  avatar Greg avatar

Watchers

 avatar James Cloos avatar Patrik Hartlén avatar  avatar Elwood Blues avatar Greg avatar Buildbox1 avatar  avatar  avatar Mike avatar Benjamin Roswall avatar Mark Hotchkiss avatar  avatar

smartconnectorsamples's Issues

BaseURI is not being set in AutoRest client

        public static EwsRestGateway Connect(Uri baseUri, string userName, string password, string tokenEndpoint = "GetToken")
        {
            var client = new EwsRestGateway
            {
                _token = BearerToken.ObtainToken(baseUri, userName, password, tokenEndpoint)

            };
            client._password.LoadValue(password);
            client._userName.LoadValue(userName);

            InitializeServiceClient(client);
            return client;
        }

should be:

        public static EwsRestGateway Connect(Uri baseUri, string userName, string password, string tokenEndpoint = "GetToken")
        {
            var client = new EwsRestGateway
            {
                _token = BearerToken.ObtainToken(baseUri, userName, password, tokenEndpoint)

            };
            client.BaseUri = baseUri;
            client._password.LoadValue(password);
            client._userName.LoadValue(userName);

            InitializeServiceClient(client);
            return client;
        }

Cannot update NuGet packages

When I build the solution in VS2015 I get the error message saying that there is a directive or assembly missing. When I try to update the NuGet packages, I get the 'unable to find package' error - see attached screen shots:

nugeterror
compile error

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.