Class1.cs 424 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace NetStandard14
  6. {
  7. // This project can output the Class library as a NuGet Package.
  8. // To enable this option, right-click on the project and select the Properties menu item. In the Build tab select "Produce outputs on build".
  9. public class Class1
  10. {
  11. public Class1()
  12. {
  13. }
  14. }
  15. }