Skip to content

Commit 653d12a

Browse files
committed
Updated publish settings for version 0.5.2
1 parent 9a5a346 commit 653d12a

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<RepositoryUrl>https://github.com/RolandKoenig/SeeingSharp2</RepositoryUrl>
99
<RepositoryType>Git</RepositoryType>
1010
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
11-
<Version>0.5.1</Version>
11+
<Version>0.5.2</Version>
1212
<PackageVersion>0.5.2</PackageVersion>
1313
<Product>SeeingSharp 2</Product>
1414
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>

Samples/SeeingSharp.WinFormsSamples/SeeingSharp.WinFormsSamples.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net461</TargetFramework>
3+
<TargetFramework>net471</TargetFramework>
44
<LangVersion>8.0</LangVersion>
55
<ApplicationIcon>Logo.ico</ApplicationIcon>
66
<OutputType>WinExe</OutputType>

Samples/SeeingSharp.WpfSamples/SeeingSharp.WpfSamples.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net461</TargetFramework>
3+
<TargetFramework>net471</TargetFramework>
44
<OutputType>WinExe</OutputType>
55
<LangVersion>8.0</LangVersion>
66
<ApplicationIcon>Logo.ico</ApplicationIcon>

SeeingSharp2.sln

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tools", "Tools", "{9B532433
5656
EndProject
5757
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SeeingSharp.StaticChecks", "Tools\SeeingSharp.StaticChecks\SeeingSharp.StaticChecks.csproj", "{23DF94AA-B58B-4B2A-9AE9-3350C0C3CA9A}"
5858
EndProject
59+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Setups", "Setups", "{5D639872-DFEB-4B32-87EC-58CF12CC994B}"
60+
EndProject
5961
Global
6062
GlobalSection(SolutionConfigurationPlatforms) = preSolution
6163
Debug|Any CPU = Debug|Any CPU

script-publish.ps1

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,9 @@ dotnet pack -c Release -o ./publish ./SeeingSharp
44
dotnet pack -c Release -o ./publish ./SeeingSharp.WinForms
55
dotnet pack -c Release -o ./publish ./SeeingSharp.WinFormsCore
66
dotnet pack -c Release -o ./publish ./SeeingSharp.Wpf
7-
dotnet pack -c Release -o ./publish ./SeeingSharp.WpfCore
7+
dotnet pack -c Release -o ./publish ./SeeingSharp.WpfCore
8+
9+
dotnet publish -c Release -f net471 -r win7-x86 -o ./publish/WinFormsSamples ./Samples/SeeingSharp.WinFormsSamples
10+
dotnet publish -c Release -f netcoreapp3.1 -r Portable -o ./publish/WinFormsCoreSamples ./Samples/SeeingSharp.WinFormsCoreSamples
11+
dotnet publish -c Release -f net471 -r win7-x86 -o ./publish/WpfSamples ./Samples/SeeingSharp.WpfSamples
12+
dotnet publish -c Release -f netcoreapp3.1 -r Portable -o ./publish/WpfCoreSamples ./Samples/SeeingSharp.WpfCoreSamples

0 commit comments

Comments
 (0)