Skip to content

Commit f698596

Browse files
committed
(GH-321) Use .Net Core 3 Preview 6
1 parent c3424fc commit f698596

File tree

5 files changed

+13
-12
lines changed

5 files changed

+13
-12
lines changed

appveyor.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,17 @@ environment:
1818
secure: BSPdW2TgnQtoQXXbeDECug==
1919

2020
skip_tags: true
21-
image: Visual Studio 2019 Preview
21+
image: Visual Studio 2019
2222
configuration: Release
2323
test: off
2424

25-
# Install dotnet core 3.0 latest (alpha!!), as this is not provided on AppVeyor yet
2625
install:
26+
- cinst netfx-4.7-devpack
2727
#- ps: Start-FileDownload 'https://dotnetcli.blob.core.windows.net/dotnet/Sdk/master/dotnet-sdk-latest-win-x64.exe'
2828
#- ps: Start-Process .\dotnet-sdk-latest-win-x64.exe "/install /norestart /quiet /log sdkinstall.log" -NoNewWindow -Wait
2929
#- ps: Start-FileDownload 'https://download.visualstudio.microsoft.com/download/pr/4032ceb5-61cd-495a-ab25-475aa2232f28/7eb614e777d87ef0d49f86be4fc8bbde/dotnet-sdk-3.0.100-preview4-011223-win-x64.exe'
3030
#- ps: Start-Process .\dotnet-sdk-3.0.100-preview4-011223-win-x64.exe "/install /norestart /quiet /log sdkinstall.log" -NoNewWindow -Wait
31+
# Install dotnet core 3.0 latest (alpha!!), as this is not provided on AppVeyor yet
3132
- cinst dotnetcore-sdk --pre
3233

3334
pull_requests:

src/Directory.build.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515

1616
<!-- Add the references for all projects and targets -->
1717
<ItemGroup>
18-
<PackageReference Include="JetBrains.Annotations" Version="2018.*" PrivateAssets="All" />
18+
<PackageReference Include="JetBrains.Annotations" Version="2019.*" PrivateAssets="All" />
1919
</ItemGroup>
2020

2121
<ItemGroup>
22-
<None Remove="**\*.png;**\*.jpg;**\*.ico"/>
23-
<Resource Include="**\*.png;**\*.jpg;**\*.ico"/>
22+
<None Remove="**\*.png;**\*.jpg;**\*.ico" />
23+
<Resource Include="**\*.png;**\*.jpg;**\*.ico" />
2424
</ItemGroup>
2525

2626
<!-- SourceLink -->

src/GongSolutions.WPF.DragDrop/Directory.build.targets

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
22

33
<!-- NuGet -->
4-
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
4+
<PropertyGroup>
55
<Authors>Jan Karger, Steven Kirk, mitchell.jon</Authors>
66
<PackageId>gong-wpf-dragdrop</PackageId>
77
<PackageLicenseFile>LICENSE</PackageLicenseFile>
@@ -23,8 +23,8 @@
2323
</PropertyGroup>
2424

2525
<ItemGroup>
26-
<None Include="..\..\LICENSE" Pack="true" PackagePath=""/>
26+
<None Include="..\..\LICENSE" Pack="true" PackagePath="" />
2727
</ItemGroup>
2828

29-
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.targets', '$(MSBuildThisFileDirectory)../'))"/>
29+
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.targets', '$(MSBuildThisFileDirectory)../'))" />
3030
</Project>

src/Showcase/Showcase.WPF.DragDrop.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<ApplicationManifest>app.manifest</ApplicationManifest>
1515
</PropertyGroup>
1616
<ItemGroup>
17-
<ProjectReference Include="..\GongSolutions.WPF.DragDrop\GongSolutions.WPF.DragDrop.csproj"/>
17+
<ProjectReference Include="..\GongSolutions.WPF.DragDrop\GongSolutions.WPF.DragDrop.csproj" />
1818
</ItemGroup>
1919
<!-- reference includes -->
2020
<ItemGroup>
@@ -24,8 +24,8 @@
2424
<PackageReference Include="Faker.Net" Version="1.*" />
2525
</ItemGroup>
2626
<ItemGroup>
27-
<None Include="app.manifest"/>
28-
<None Remove="App.config"/>
27+
<None Include="app.manifest" />
28+
<None Remove="App.config" />
2929
</ItemGroup>
3030
<ItemGroup Condition="'$(TargetFramework)' != 'netcoreapp3.0'">
3131
<AppConfigWithTargetPath Include="App.$(TargetFramework).config">

src/global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"sdk": {
3-
"version": "3.0.100-preview5"
3+
"version": "3.0.100-preview6"
44
}
55
}

0 commit comments

Comments
 (0)