Search results for query: *

  1. Siwar Ha

    edmx in .net core

    im new to .net core and im trying to add edmx to my project and this is not available for .net core i want to know if .net core is always code-first and i need to write all by code ? I have 3 layers for my application : 1. DATALAYER 2. SERVICELAYER 3. AND API All in .net core what...
  2. Siwar Ha

    "Failed to launch browser with \"https://accounts.google.com/o/oauth2/v2

    public static DriveService Execution(string ApplicationName, string credentials) { var clientSecrets = new ClientSecrets { ClientId = "xxxx", ClientSecret = "xxxx" }; var credential = new...
  3. Siwar Ha

    "Failed to launch browser with \"https://accounts.google.com/o/oauth2/v2

    public static DriveService Execution(string ApplicationName, string credentials) { UserCredential credential; using (var stream = new FileStream(credentials, FileMode.Open, FileAccess.Read)) { string credPath =...
  4. Siwar Ha

    uploading files to Google drive with windows service

    how can i attach it with visual studio ? i have no idea how , I've tried to log the exception but nothing showed thank you.
  5. Siwar Ha

    uploading files to Google drive with windows service

    I m writhing a program that moves files from one place to another and if everything is fine a copy of those files are sent .zip to google drive . the code is working fine with console application : files are placed in the destination and uploaded to google drive . BUT when i run it as windows...
Back
Top Bottom