GDAL Nuget Guide












0















Some people in Gdal forum ask me to try the GDAL nuget package. May someone help me regarding how to use the GDAL nuget package at nuget.org and may i know it still need to set up just like use in C++?










share|improve this question























  • Sorry, general software/tool questions are off-topic at Stack Overflow.

    – JohnB
    Nov 26 '18 at 3:40











  • Any update for this issue? Have you resolved this issue? If not, would you please let me know the latest information about this issue?

    – Leo Liu-MSFT
    Nov 30 '18 at 1:16











  • @LeoLiu-MSFT it seem my VS2012 cant use the nuget package gdal cause it require nuget update 3.0 and above. So i just download the package from GISInternal wbsite website and add reference to the VS2012. You then can try example from here. Also can refer this.

    – Mohamad Fathin
    Dec 10 '18 at 3:40













  • @MohamadFathin, Yes, NuGet 3.3 or higher is requires.

    – Leo Liu-MSFT
    Dec 10 '18 at 3:42
















0















Some people in Gdal forum ask me to try the GDAL nuget package. May someone help me regarding how to use the GDAL nuget package at nuget.org and may i know it still need to set up just like use in C++?










share|improve this question























  • Sorry, general software/tool questions are off-topic at Stack Overflow.

    – JohnB
    Nov 26 '18 at 3:40











  • Any update for this issue? Have you resolved this issue? If not, would you please let me know the latest information about this issue?

    – Leo Liu-MSFT
    Nov 30 '18 at 1:16











  • @LeoLiu-MSFT it seem my VS2012 cant use the nuget package gdal cause it require nuget update 3.0 and above. So i just download the package from GISInternal wbsite website and add reference to the VS2012. You then can try example from here. Also can refer this.

    – Mohamad Fathin
    Dec 10 '18 at 3:40













  • @MohamadFathin, Yes, NuGet 3.3 or higher is requires.

    – Leo Liu-MSFT
    Dec 10 '18 at 3:42














0












0








0








Some people in Gdal forum ask me to try the GDAL nuget package. May someone help me regarding how to use the GDAL nuget package at nuget.org and may i know it still need to set up just like use in C++?










share|improve this question














Some people in Gdal forum ask me to try the GDAL nuget package. May someone help me regarding how to use the GDAL nuget package at nuget.org and may i know it still need to set up just like use in C++?







c# visual-studio nuget gdal






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 26 '18 at 3:33









Mohamad FathinMohamad Fathin

206




206













  • Sorry, general software/tool questions are off-topic at Stack Overflow.

    – JohnB
    Nov 26 '18 at 3:40











  • Any update for this issue? Have you resolved this issue? If not, would you please let me know the latest information about this issue?

    – Leo Liu-MSFT
    Nov 30 '18 at 1:16











  • @LeoLiu-MSFT it seem my VS2012 cant use the nuget package gdal cause it require nuget update 3.0 and above. So i just download the package from GISInternal wbsite website and add reference to the VS2012. You then can try example from here. Also can refer this.

    – Mohamad Fathin
    Dec 10 '18 at 3:40













  • @MohamadFathin, Yes, NuGet 3.3 or higher is requires.

    – Leo Liu-MSFT
    Dec 10 '18 at 3:42



















  • Sorry, general software/tool questions are off-topic at Stack Overflow.

    – JohnB
    Nov 26 '18 at 3:40











  • Any update for this issue? Have you resolved this issue? If not, would you please let me know the latest information about this issue?

    – Leo Liu-MSFT
    Nov 30 '18 at 1:16











  • @LeoLiu-MSFT it seem my VS2012 cant use the nuget package gdal cause it require nuget update 3.0 and above. So i just download the package from GISInternal wbsite website and add reference to the VS2012. You then can try example from here. Also can refer this.

    – Mohamad Fathin
    Dec 10 '18 at 3:40













  • @MohamadFathin, Yes, NuGet 3.3 or higher is requires.

    – Leo Liu-MSFT
    Dec 10 '18 at 3:42

















Sorry, general software/tool questions are off-topic at Stack Overflow.

– JohnB
Nov 26 '18 at 3:40





Sorry, general software/tool questions are off-topic at Stack Overflow.

– JohnB
Nov 26 '18 at 3:40













Any update for this issue? Have you resolved this issue? If not, would you please let me know the latest information about this issue?

– Leo Liu-MSFT
Nov 30 '18 at 1:16





Any update for this issue? Have you resolved this issue? If not, would you please let me know the latest information about this issue?

– Leo Liu-MSFT
Nov 30 '18 at 1:16













@LeoLiu-MSFT it seem my VS2012 cant use the nuget package gdal cause it require nuget update 3.0 and above. So i just download the package from GISInternal wbsite website and add reference to the VS2012. You then can try example from here. Also can refer this.

– Mohamad Fathin
Dec 10 '18 at 3:40







@LeoLiu-MSFT it seem my VS2012 cant use the nuget package gdal cause it require nuget update 3.0 and above. So i just download the package from GISInternal wbsite website and add reference to the VS2012. You then can try example from here. Also can refer this.

– Mohamad Fathin
Dec 10 '18 at 3:40















@MohamadFathin, Yes, NuGet 3.3 or higher is requires.

– Leo Liu-MSFT
Dec 10 '18 at 3:42





@MohamadFathin, Yes, NuGet 3.3 or higher is requires.

– Leo Liu-MSFT
Dec 10 '18 at 3:42












1 Answer
1






active

oldest

votes


















0















how to use the GDAL nuget package at nuget.org and may i know it still need to set up just like use in C++?




Right on your project, select Manage NuGet Packages..., switch to the Browse tab in the open window, type gdal in the search bar, then click Install button:



enter image description here



If you install GDAL to your project you will get the .dll file you need and NuGet also automatically create a GdalConfiguration.cs that you call into to initialize the GDAL paths before starting. The only thing to note is the packages are setup to automatically copy their appropriate GDAL libraries to your output build directory. If you need to deploy the application you'll have to do a bit of extra effort.



enter image description here



Besides, you do not need to set up just like use in C++. For some more details info, please check following threads:



How do I install the GDAL bindings for C#/.NET 4.5.1?



Exception while using GDAL in C#



Hope this helps.






share|improve this answer























    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53474465%2fgdal-nuget-guide%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0















    how to use the GDAL nuget package at nuget.org and may i know it still need to set up just like use in C++?




    Right on your project, select Manage NuGet Packages..., switch to the Browse tab in the open window, type gdal in the search bar, then click Install button:



    enter image description here



    If you install GDAL to your project you will get the .dll file you need and NuGet also automatically create a GdalConfiguration.cs that you call into to initialize the GDAL paths before starting. The only thing to note is the packages are setup to automatically copy their appropriate GDAL libraries to your output build directory. If you need to deploy the application you'll have to do a bit of extra effort.



    enter image description here



    Besides, you do not need to set up just like use in C++. For some more details info, please check following threads:



    How do I install the GDAL bindings for C#/.NET 4.5.1?



    Exception while using GDAL in C#



    Hope this helps.






    share|improve this answer




























      0















      how to use the GDAL nuget package at nuget.org and may i know it still need to set up just like use in C++?




      Right on your project, select Manage NuGet Packages..., switch to the Browse tab in the open window, type gdal in the search bar, then click Install button:



      enter image description here



      If you install GDAL to your project you will get the .dll file you need and NuGet also automatically create a GdalConfiguration.cs that you call into to initialize the GDAL paths before starting. The only thing to note is the packages are setup to automatically copy their appropriate GDAL libraries to your output build directory. If you need to deploy the application you'll have to do a bit of extra effort.



      enter image description here



      Besides, you do not need to set up just like use in C++. For some more details info, please check following threads:



      How do I install the GDAL bindings for C#/.NET 4.5.1?



      Exception while using GDAL in C#



      Hope this helps.






      share|improve this answer


























        0












        0








        0








        how to use the GDAL nuget package at nuget.org and may i know it still need to set up just like use in C++?




        Right on your project, select Manage NuGet Packages..., switch to the Browse tab in the open window, type gdal in the search bar, then click Install button:



        enter image description here



        If you install GDAL to your project you will get the .dll file you need and NuGet also automatically create a GdalConfiguration.cs that you call into to initialize the GDAL paths before starting. The only thing to note is the packages are setup to automatically copy their appropriate GDAL libraries to your output build directory. If you need to deploy the application you'll have to do a bit of extra effort.



        enter image description here



        Besides, you do not need to set up just like use in C++. For some more details info, please check following threads:



        How do I install the GDAL bindings for C#/.NET 4.5.1?



        Exception while using GDAL in C#



        Hope this helps.






        share|improve this answer














        how to use the GDAL nuget package at nuget.org and may i know it still need to set up just like use in C++?




        Right on your project, select Manage NuGet Packages..., switch to the Browse tab in the open window, type gdal in the search bar, then click Install button:



        enter image description here



        If you install GDAL to your project you will get the .dll file you need and NuGet also automatically create a GdalConfiguration.cs that you call into to initialize the GDAL paths before starting. The only thing to note is the packages are setup to automatically copy their appropriate GDAL libraries to your output build directory. If you need to deploy the application you'll have to do a bit of extra effort.



        enter image description here



        Besides, you do not need to set up just like use in C++. For some more details info, please check following threads:



        How do I install the GDAL bindings for C#/.NET 4.5.1?



        Exception while using GDAL in C#



        Hope this helps.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 26 '18 at 8:11









        Leo Liu-MSFTLeo Liu-MSFT

        21.1k22635




        21.1k22635
































            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53474465%2fgdal-nuget-guide%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Costa Masnaga

            Fotorealismo

            Sidney Franklin