Explorar el Código

Building QuestPDF Previewer for dotnet 7

MarcinZiabek hace 2 años
padre
commit
b05f76f848
Se han modificado 2 ficheros con 3 adiciones y 3 borrados
  1. 1 1
      Source/QuestPDF.Previewer/QuestPDF.Previewer.csproj
  2. 2 2
      Source/global.json

+ 1 - 1
Source/QuestPDF.Previewer/QuestPDF.Previewer.csproj

@@ -23,9 +23,9 @@
         <IncludeSymbols>true</IncludeSymbols>
         <SymbolPackageFormat>snupkg</SymbolPackageFormat>
         <OutputType>exe</OutputType>
-        <TargetFramework>net6.0</TargetFramework>
         <ImplicitUsings>enable</ImplicitUsings>
         <Nullable>enable</Nullable>
+        <TargetFrameworks>net6.0;net7.0</TargetFrameworks>
     </PropertyGroup>
 
     <ItemGroup>

+ 2 - 2
Source/global.json

@@ -1,7 +1,7 @@
 {
   "sdk": {
-    "version": "6.0.300",
+    "version": "7.0.0",
     "rollForward": "latestMinor",
     "allowPrerelease": true
   }
-}
+}