Visual Studio etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster
Visual Studio etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster

24 Şubat 2017 Cuma

WcfTestClient.exe lokasyon

For .NET 4.5+:
C:\Program Files (x86)\Microsoft Visual Studio {YourVersionHere}\Common7\IDE
VS 2015:
C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE
VS 2013:
C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE
VS 2012:
C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE

25 Şubat 2016 Perşembe

visualstudio conflict merge sorunu

Tools->Options->Text Editor->Html->Advanced->Extension Management->Identify Helpful Extension => false yap

11 Şubat 2016 Perşembe

The operation could not be completed

cshtml dosyaları açılmıyor ve "The operation could not be completed" hatası veriyorsa
"Users\<CurrentUser>\AppData\Local\Microsoft\VisualStudio\<version>\" adresinden versiyon numarası neyse onu siliyoruz. Düzeliyor

ayrıca webpages versiyonundan da sorun olabiliyor

<appSettings>
    <add key="webpages:Version" value="2.0.?.?" />
  </appSettings>
 
versiyon numarası "3.0.0.0" yapınca da düzeliyor. 

14 Aralık 2015 Pazartesi

Tüm paketleri güncelleme

Updating All Packages

Issue: 431
There is currently no easy way to update all packages within a solution. In this iteration, we’ll update the Update-Package command to support updating all packages at the solution level and project level. We will not be adding support for this to the Add Package Dialog in this iteration, but will consider it for a future iteration. We just need to think through the UI for that.
Command Description
Update-Package Updates all packages in all projects.
Update-Package –Project ProjectName Updates all packages in the specified project
Update-Package PackageId Breaking Change: Updates the specified package in all projects rather than just the current project
Update-Package PackageKid –Project ProjectName No change: Updates the specified package in the specfied project only as before.
Update-Package –Safe  New –Safe flag only updates packages to the next “safe” version, which is the latest version with the same major and minor version number as the current package.

.net 6 mapget kullanımı

 app.UseEndpoints(endpoints => {     endpoints.MapGet("/", async context =>     {         var response = JsonConvert.Seriali...