Visual Studio 2017-生成事件的用户宏

时间:2018-07-01 19:06:36

标签: visual-studio macros post-build-event build-events

我找不到添加自定义宏(用于构建事件)的任何选项。 我处于.Net环境及其有关Visual Studio 2017的环境中。

我想定义一个“变量”,可以在构建事件$(myVar)和代码中使用该变量。这有可能吗?

1 个答案:

答案 0 :(得分:0)

您可以定义一个生成C#文件的预生成事件(使用 public void LoadQues() { // int count = 0; (Global) // when calling LoadQues() method set count++ for next random ques. /* setting ques on textview by getting ques from arrQuestions and getting any random index number for question from arrshuffle.*/ txtques.setText(arrQuestions.get(arrshuf.get(count)).Ques); btn1.setText(arrQuestions.get(arrshuf.get(count)).Opt1); btn2.setText(arrQuestions.get(arrshuf.get(count)).Opt2); btn3.setText(arrQuestions.get(arrshuf.get(count)).Opt3); btn4.setText(arrQuestions.get(arrshuf.get(count)).Opt4); ans = arrQuestions.get(arrshuf.get(count)).Ans; } ),该C#文件声明一个带有常量的类。

您将在项目文件的标签中将变量定义为MSBuild变量。