5 articles Visual Studio

Rekadia NuGet Server

Berikut langkah-langkah untuk menambahkan Rekadia NuGet server pada Visual Studio 2019: Buka Visual Studio Tools > NuGet Package Manager > Package Manager Settings Di dalam menu options masuk ke NuGet Package Manager > Package Sources lalu klik tombol tambah Isi field Name dan Source sebagai berikut:Name: rekadia.netSource: https://rekadia.net/nuget/v3/index.jsonLalu tekan tombol OK Cara menggunakan Rekadia NuGet…

Configuration WSDL Pertamina

Untuk bisa menggunakan wsdl pertamina yang menggunakan authentication kita harus menambahkan beberapa baris code baik di c# dan di web.confignya untuk code c# untuk web.config pada setting web.config nya kita bisa mengatur security mode, client credential type beserta proxy credential typetetapi harus diperhatikan bahwa settingan pada sisi client bergantung pada code service yg dibuatuntuk lebih…

Visual Studio Missing References

Jika references hilang seperti di bawah ini: Solusinya sebagai berikut: Whenever you import a project to Visual Studio it modifies your .csproj. So, in order to fix it. Right click on .csproj and open it in notepad or any editor and delete the following [code language=”xml”] <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> <PropertyGroup> <ErrorText>This project references NuGet package(s)…

Visual Studio edmx Slow

Setting the compatibility level of the database to 110 has worked for me. To check the compatibility level, run this script: select compatibility_level from sys.databases where name = ‘<YOUR_DB_NAME>’ To set the compatibility level, use this script: alter database <YOUR_DB_NAME> set compatibility_level = 110 http://stackoverflow.com/questions/32700540/update-wizard-not-responding