اشتراک‌ها
TypeScript 3.5 منتشر شد

Speed improvements
TypeScript 3.5 introduces several optimizations around type-checking and incremental builds. 

TypeScript 3.5 منتشر شد
اشتراک‌ها
Angular 8 منتشر شد

Version 8 of Angular — Smaller bundles, CLI APIs, and alignment with the ecosystem 

Angular 8 منتشر شد
اشتراک‌ها
Firefox 67 منتشر شد

Firefox 67 better protects your privacy online with new Content Blocking options to avoid known cryptominers and fingerprinters. 

Firefox 67 منتشر شد
اشتراک‌ها
ReSharper Ultimate 2019.1 منتشر شد

Support for the recently released Visual Studio 2019 RTM, including but not limited to supporting the “async packages auto-load” API in Visual Studio 2019. 

ReSharper Ultimate 2019.1 منتشر شد
اشتراک‌ها
WebStorm 2019.1.1 منتشر شد

The tooltip that shows the expression type (Cmd/Ctrl-hover) in JavaScript and TypeScript files now has a syntax highlighting. 

WebStorm 2019.1.1 منتشر شد
اشتراک‌ها
AutoMapper 8.1.0 منتشر شد

AutoMapper 8.1 adds a major new feature - attribute-based maps. Attribute maps let you easily declare maps on destination types when you have straightforward scenarios. Instead of: 


public class OrderProfile {  
    public OrderProfile() {
        CreateMap<Order, OrderIndexModel>();
        CreateMap<Order, OrderEditModel>();
        CreateMap<Order, OrderCreateModel>();
    }
}


You can declare your type maps directly on the destination types themselves with AutoMapAttribute: 


[AutoMap(typeof(Order))]
public class OrderIndexModel {  
    // members
}

[AutoMap(typeof(Order))]
public class OrderEditModel {  
    // members
}

[AutoMap(typeof(Order))]
public class OrderCreateModel {  
    // members
}


AutoMapper 8.1.0 منتشر شد