ASP.NET GUI Tools

I am new to .NET programming. We are a team of 4 members developing a web application.

We will begin our development after the specification of requirements and other formalities are completed.

As suggested in this forum, we plan to use Visual SVN for version control. We don’t know that MSBuild and NAnt are some build tools. please specify why do we need assembly tools? Any book or website for exploring the build process?

We have heard that MSBuild and NAnt are command line build tools. Can we use the GUI to create tools?

(Before development, we are advised to obtain full knowledge of UML, Initial Control, Building Tools. We have received enough information about UML and source control from Stack Overflow. We want to collect information about Build Tools).

+3
source share
5 answers

Or look at FinalBuilder as a stand-alone tool for creating a desktop or FinalBuilder Server as the same, but server-side.

Mark

+3
source

We are starting to use FinalBuilder .

+3
source
+2

, , , rake. , (mbunit). , . , , ( ) ( ).

, , .

  • ruby ​​( )
  • Rakefile.rb
  • , "rake" enter

, .

DOT_NET_PATH = "C:/Windows/Microsoft.NET/Framework/v3.5/"

= "YOUR_SOLUTION_HERE.sln"

CONFIG = ""

MBUNIT_PATH = "C:/pROGRAMS/Gallio/Gallio.Echo.exe"

TEST_NAME = "NAME_OF_TEST_PROJECT_HERE"

task: default = > [ "build: all" ]

namespace: build do

task: all = > [: compile,: test]

desc " MSBuild : '# {SOLUTION}'"

: do

sh "#{DOT_NET_PATH}msbuild.exe /p:Configuration=#{CONFIG} #{SOLUTION}"

desc " Gallio MbUnit"

: test = > [: compile] do

sh "#{MBUNIT_PATH} /no-echo-results test/#{TEST_NAME}/bin/Debug/#{TEST_NAME}.dll"

+1

I think many built-in tools are built into Visual Studio Team Server (VSTS). It not only handles source code protection, but you can have a “build machine". NAnt is cool not only for assembly, but also for other scripting tasks.

Nile

+1
source

Source: https://habr.com/ru/post/1716783/


All Articles