C# Project Management with Maven

前端 未结 7 965
一生所求
一生所求 2020-12-17 09:23

Anyone had experience of managing C# based projects with Maven?

If yes , please tell me a few words about it , how weird would it be to create such a setup.

7条回答
  •  隐瞒了意图╮
    2020-12-17 09:57

    maven-compiler-plugin with plexus-compiler-csharp works just fine with the following configuration. Of course you'll have to point to an actual C# compiler on your machine with the "executable" parameter.

    
        org.apache.maven.plugins
        maven-compiler-plugin
        3.0
        
            csharp
            true
            C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe
            myDLL
        
        
            
                org.codehaus.plexus
                plexus-compiler-csharp
                2.2
            
        
    
    

提交回复
热议问题