Skip to content

Commit

Permalink
Merge pull request #23 from madd0/develop
Browse files Browse the repository at this point in the history
Update references and remove .Net Core 3.0 target
  • Loading branch information
madd0 authored Nov 13, 2022
2 parents 24290f2 + f9a6d0b commit b856d88
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 19 deletions.
9 changes: 0 additions & 9 deletions .azure/pipelines/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,15 +73,6 @@ steps:
archiveFile: '$(Build.ArtifactStagingDirectory)/Madd0.AzureStorageDriver.lpx'
replaceExistingArchive: true

- task: ArchiveFiles@2
displayName: Create .NET Core 3.0 lpx6
inputs:
rootFolderOrFile: '$(Build.BinariesDirectory)/$(buildConfiguration)/netcoreapp3.0'
includeRootFolder: false
archiveType: 'zip'
archiveFile: '$(Build.ArtifactStagingDirectory)/Madd0.AzureStorageDriver.netcore30.lpx6'
replaceExistingArchive: true

- task: ArchiveFiles@2
displayName: Create .NET Core 3.1 lpx6
inputs:
Expand Down
19 changes: 9 additions & 10 deletions Madd0.AzureStorageDriver/Madd0.AzureStorageDriver.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<TargetFrameworks>netcoreapp3.0;netcoreapp3.1;net46</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net46</TargetFrameworks>
<LangVersion>latest</LangVersion>
<UseWpf>true</UseWpf>
<AssemblyName>Madd0.AzureStorageDriver</AssemblyName>
Expand All @@ -10,14 +10,14 @@

<PropertyGroup>
<AssemblyTitle>AzureStorageDriver</AssemblyTitle>
<Description>A LINQPad driver to perform queries againt Azure Table Storage.</Description>
<Description>A LINQPad driver to perform queries against Azure Table Storage.</Description>
<Company>madd0 (http://www.madd0.com)</Company>
<Product>Azure Table Storage Driver</Product>
<Title>Azure Table Storage Driver</Title>
<Copyright>Copyright © 2012 Mauricio DIAZ ORLICH</Copyright>
<Version>2.1.1</Version>
<AssemblyVersion>2.1.1.0</AssemblyVersion>
<FileVersion>2.1.1.0</FileVersion>
<Version>2.1.2</Version>
<AssemblyVersion>2.1.2.0</AssemblyVersion>
<FileVersion>2.1.2.0</FileVersion>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageProjectUrl>https://github.com/madd0/AzureStorageDriver</PackageProjectUrl>
<RepositoryUrl>https://github.com/madd0/AzureStorageDriver.git</RepositoryUrl>
Expand All @@ -32,8 +32,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="LINQPad.Reference" Version="1.1.0" />
<PackageReference Include="SonarAnalyzer.CSharp" Version="8.0.0.9566" />
<PackageReference Include="LINQPad.Reference" Version="1.*" />
<PackageReference Include="SonarAnalyzer.CSharp" Version="8.*" />
<PackageReference Include="Newtonsoft.Json" Version="13.*" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net46'">
Expand All @@ -49,9 +50,7 @@
<PackageReference Include="Microsoft.Azure.Cosmos.Table">
<Version>1.0.5</Version>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp">
<Version>3.3.1</Version>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.*" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net46'">
Expand Down

0 comments on commit b856d88

Please sign in to comment.