Xamarin Studio:重建项目错误,错误:" DebugType" " XamlCTask"不支持参数。任务

时间:2017-05-19 00:49:48

标签: xml compiler-errors xamarin-studio rebuild

我已经设法通过删除下面xml文件中的行`<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script> <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script> <script type="text/javascript"> var jsonData = []; $(document).ready(function(){ $.ajax({url: "/test", success: function(result){ jsonData = result.map; }}); }); // Load the Visualization API and the corechart package. google.charts.load('current', {'packages':['corechart']}); // Set a callback to run when the Google Visualization API is loaded. google.charts.setOnLoadCallback(drawChart); // Callback that creates and populates a data table, // instantiates the pie chart, passes in the data and // draws it. function drawChart() { // Create the data table. var data = new google.visualization.DataTable(); data.addColumn('string', 'Topping'); data.addColumn('number', 'Slices'); for (var key in jsonData) { data.addRow([key,jsonData[key]]); } // Set chart options var options = {'title':'How Much Pizza I Ate Last Night', 'width':400, 'height':300}; // Instantiate and draw our chart, passing in some options. var chart = new google.visualization.PieChart(document.getElementById('chart_div')); chart.draw(data, options); } </script> <div id="chart_div" style="height: 300px; width: 100%;"></div> </body> 来重建项目。这条线真正做了什么,为什么它可以解决我的问题。我有错误,因为我从源代码树中提取新代码。

DebugType = "$(DebugType)"

2 个答案:

答案 0 :(得分:6)

我只需重新启动Visual Studio并在解决方案中进行重建即可解决此问题。

我什么都没做,项目也有效。

按照这种想法,在您的情况下,重新启动Xamarin Studio应解决。

答案 1 :(得分:1)

按照此处的说明为我修好:https://forums.xamarin.com/discussion/95724/xamarin-forms-2-3-4-247-update-project-wont-build

我必须关闭Visual Studio,删除所有项目中的所有bin /和obj /目录,然后重新启动。简单地清除或删除单个项目中的目录而不重新启动不起作用。

不确定它是否与它有任何关系,但它似乎是在重命名组件后开始的。 iOS没有遇到这个问题。