7
dotnet
を使用して、コマンドラインから.NETコアC#プロジェクトをビルドしています。プロジェクトにはmain
メソッドを持つ複数のクラスがあります。したがって、私はエラーを取得する:dotnet build指定のメインメソッド
$ dotnet build /main:Test
Microsoft (R) Build Engine version 15.1.548.43366
Copyright (C) Microsoft Corporation. All rights reserved.
MSBUILD : error MSB1001: Unknown switch.
Switch: /main:Test
がどのように私はdotnet
コマンドに/main
スイッチを渡すことができます。
$ dotnet build
Microsoft (R) Build Engine version 15.1.548.43366
Copyright (C) Microsoft Corporation. All rights reserved.
Test.cs(18,28): error CS0017: Program has more than one entry point defined. Compile with /main to specify the type that contains the entry point.
Build FAILED.
はエラーで/main
スイッチ結果を渡しますか?
貿易のニーストリック! – granadaCoder
私はあなたの答えを見つけるまで、過去1時間をいくつか試しました。これを記録する時間をとってくれてありがとう! – koopajah