Skip to content

Commit

Permalink
net6
Browse files Browse the repository at this point in the history
  • Loading branch information
KSemenenko committed Oct 14, 2022
1 parent 9fbe43b commit 3e4cb0a
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 13 deletions.
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Product>Managed Code - Storage</Product>
<Version>2.0.15</Version>
<PackageVersion>2.0.15</PackageVersion>
<Version>2.0.16</Version>
<PackageVersion>2.0.16</PackageVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<LangVersion>10</LangVersion>
<DebugType>embedded</DebugType>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
</PropertyGroup>

<!--NuGet-->
Expand All @@ -17,13 +18,13 @@
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\ManagedCode.Storage.Core\ManagedCode.Storage.Core.csproj"/>
<ProjectReference Include="..\ManagedCode.Storage.Core\ManagedCode.Storage.Core.csproj" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="ManagedCode.MimeTypes" Version="1.0.0"/>
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.2.2"/>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5"/>
<PackageReference Include="ManagedCode.MimeTypes" Version="1.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.2.2" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
</ItemGroup>

</Project>
3 changes: 2 additions & 1 deletion ManagedCode.Storage.Aws/ManagedCode.Storage.Aws.csproj
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<LangVersion>10</LangVersion>
<DebugType>embedded</DebugType>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
</PropertyGroup>

<!--NuGet-->
Expand Down
3 changes: 2 additions & 1 deletion ManagedCode.Storage.Azure/ManagedCode.Storage.Azure.csproj
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<LangVersion>10</LangVersion>
<DebugType>embedded</DebugType>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
</PropertyGroup>

<!--NuGet-->
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<LangVersion>10</LangVersion>
<DebugType>embedded</DebugType>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
</PropertyGroup>

<!--NuGet-->
Expand Down
3 changes: 2 additions & 1 deletion ManagedCode.Storage.Core/ManagedCode.Storage.Core.csproj
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<LangVersion>10</LangVersion>
<DebugType>embedded</DebugType>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
</PropertyGroup>

<!--NuGet-->
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<LangVersion>10</LangVersion>
<DebugType>embedded</DebugType>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
</PropertyGroup>

<!--NuGet-->
Expand Down
3 changes: 2 additions & 1 deletion ManagedCode.Storage.Gcp/ManagedCode.Storage.Gcp.csproj
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<LangVersion>10</LangVersion>
<DebugType>embedded</DebugType>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
</PropertyGroup>

<!--NuGet-->
Expand Down
1 change: 1 addition & 0 deletions Samples/WebApiSample/WebApiSample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 3e4cb0a

Please sign in to comment.