Posts

Showing posts with the label .net Framework and .net Standard are in same Visual Studio Project

Use Multiple Framework in your single Visual Studio project - Multi Framework Targeting

Image
If you want to build your code with couple environments compliance, Visual Studio allows us to generate for multiple architecture. Visual Studio can generate libraries for .NET Framework 4.6.2 while building libraries for .NET Standard 2.0. One compile, couple outputs :) In order to convert your Visual Project, Open .csproj file that you want to use multiple framework than manipulate TargetFramework tag. For Example; I created a Project for .NET Standard 2.0 from Visual Studio as usual then set it for already .NET Framework 4.6.2 Visual Studio creates .csproj file as following ; <Project Sdk="Microsoft.NET.Sdk">   <PropertyGroup>     <TargetFramework>netstandard2.0</TargetFramework>     <Authors>United Response SAM Team</Authors>     <Company>United Response</Company>     <Description>United Response SAM Team</Description>     <Version>1.0.0.2</Version>   </PropertyGroup> <