Questions tagged as '.net-standard'

2
answers

What's the difference when creating a class libray (.net framework) and class library (.net standard) project in VS2017?

What are the differences and uses of these types of projects?     
asked by 08.11.2017 / 12:44
1
answer

Compatibility between .NET Core 2.0 and .NET Framework 4.7

I'm creating a general purpose library (DLL) for reuse in .Net Core 2.0 and .Net Framework 4.7 projects. I want to have .Net Core projects in Linux and .Net Framework 4.7 projects for Windows. Can a library developed with .Net Core 2.0 be used i...
asked by 20.08.2017 / 22:11
0
answers

The 'licenseUrl' element will be deprecated

I have a library made with .NETStandard, after I updated Visual Studio, I now get a warning:    NU5125 The 'licenseUrl' element will be deprecated. Consider using the   'license' element instead. See the code: <Project Sdk="Microsoft...
asked by 04.12.2018 / 00:11
0
answers

.NET Standard 1.2 - FileVersionInfo does not exist

Follow the code below: public static string GetVersion() { return FileVersionInfo .GetVersionInfo(Assembly.GetExecutingAssembly().Location) .ProductVersion; } I get error:    CS0103 The name...
asked by 20.11.2018 / 16:13