我已更新Visual Studio 2015更新3,更新1使用Url中的指令添加的配置文件,但它不工作我如何能在Windows 10中向天藍色發送見解通用應用,如何將應用程序見解配置文件添加到Windows 10通用應用程序
0
A
回答
1
您使用哪個網址?
爲VS2015更新3,你必須:
1)手動使用NuGet包管理器
2加microsoft.applicationinsights.windowsapps包)在App.xaml.cs添加啓動代碼,在App構造函數:
public void App()
{
// add this code to initialize AI. do not await here, you'll slow down
// app startup, use continuewith to get/set any AI thing you need after
// it initializes
WindowsAppsInitializer.InitializeAsync().ContinueWith(t =>
{
// any other code you need to do with app insights here
}, continuationOptions: TaskContinuationOptions.OnlyRanToCompletion);
this.InitializeComponent();
// ... any other startup code here
}
3)如果這樣做不一個applicationinsights.config文件添加到您的項目,手動創建一個文本文件,該文件是在其整體:
<?xml version="1.0" encoding="utf-8"?>
<ApplicationInsights>
<InstrumentationKey>[your key here]</InstrumentationKey>
</ApplicationInsights>
(一些指令形式使用中有一些評論的配置文件的舊樣品,和評論包括<InstrumentationKey>
標籤,以及PERF原因,Windows應用程序的SDK啓動使用正則表達式發現而不是加載一個完整的XML解析器的關鍵,因此,如果有評論與儀表鍵,它會用它作爲你的艾奇,而不是真正的XML!)
4)文件添加到您的項目在VS中,並將其屬性設置爲:
Build Action: Content
Copy to Output Directory: Copy if Newer
(這看起來像這樣在你的.csproj)
<Content Include="ApplicationInsights.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
你不需要一個applicationinsights.config文件如果要手動設置代碼中的儀表鍵,在調用InitializeAsync。
相關問題
- 1. 添加應用程序配置爲Windows窗體應用程序
- 2. 將Windows 8 Metro應用程序移植到Windows 10通用應用程序
- 3. 適用於Windows的應用程序配置文件通用應用程序
- 4. 如何將boost.asio添加到Windows通用應用程序項目?
- 5. 開發WPF應用程序,如Windows 10設置應用程序
- 6. 從Windows 10通用應用程序啓動Cordova應用程序
- 7. SQLite文件的位置Windows 10通用應用程序
- 8. 將配置文件添加到JDeveloper - 移動應用程序
- 9. 將網絡配置文件添加到iOS 10應用程序中
- 10. 轉到應用程序時,應用程序配置文件頁面? (不能添加應用程序頁面?)
- 11. Windows 10 - 將應用程序添加到左側導航窗格
- 12. 如何將應用程序配置文件頁面添加到現有的Facebook應用程序?
- 13. 如何將解析通知添加到我的應用程序?
- 14. 如何將TimePicker控件添加到Windows Phone 8應用程序?
- 15. BackButton事件關閉應用程序Windows 10應用程序
- 16. 如何添加用戶配置文件支持到谷歌應用程序引擎應用程序?
- 17. 如何將.msi文件轉換爲Windows 10 UWP應用程序
- 18. Facebook應用程序見解添加應用程序與用戶接受
- 19. 如何將System.Web引用添加到Windows窗體應用程序
- 20. 配置Microsoft應用程序見解以監視Windows服務
- 21. 在Windows通用應用程序中添加文字到圖片
- 22. Cordova Windows 10通用應用程序 - 如何加載外部JavaScript文件?
- 23. 將文件上傳到Windows 10應用程序c中的Pushbullet#
- 24. 將Ionic應用程序添加到Rails 4應用程序
- 25. Amazon Firefly - 將應用程序添加到應用程序
- 26. MIX應用程序的配置文件爲OTP應用程序
- 27. 如何添加一個Windows 10的Tile-廣WPF應用程序
- 28. Windows 10通用Javascript應用程序Windows Mobile 10中的SQLite
- 29. 如何在GridView for Windows 10通用應用程序中添加水平滾動?
- 30. 將用戶添加到應用程序
謝謝先生。約翰加德納 –