Skip to content

Commit 22c14d2

Browse files
authored
bumping http, newtonsoft dependencies (#581)
1 parent 81748f5 commit 22c14d2

File tree

3 files changed

+24
-24
lines changed

3 files changed

+24
-24
lines changed

common.props

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,37 +4,37 @@
44

55
<MajorProductVersion>4</MajorProductVersion>
66
<MinorProductVersion>1</MinorProductVersion>
7-
<PatchProductVersion>1</PatchProductVersion>
8-
7+
<PatchProductVersion>2</PatchProductVersion>
8+
99
<!-- Clear this value for non-preview releases -->
1010
<PreviewProductVersion></PreviewProductVersion>
1111

1212
<VersionPrefix>$(MajorProductVersion).$(MinorProductVersion).$(PatchProductVersion)</VersionPrefix>
13-
13+
1414
<BuildNumber Condition="$(BuildNumber) == ''">0</BuildNumber>
1515
<UseSuffix Condition="$(UseSuffix) == ''">true</UseSuffix>
16-
16+
1717
<PreviewString Condition="'$(PreviewProductVersion)' != ''">-preview$(PreviewProductVersion)</PreviewString>
18-
18+
1919
<VersionSuffix Condition="$(PreviewString) != '' AND $(UseSuffix) == 'true'">-preview$(PreviewProductVersion).$(BuildNumber)</VersionSuffix>
2020
<VersionSuffix Condition="$(PreviewString) != '' AND $(UseSuffix) != 'true'">-preview$(PreviewProductVersion)</VersionSuffix>
2121
<VersionSuffix Condition="$(PreviewString) == '' AND $(UseSuffix) == 'true'">-$(BuildNumber)</VersionSuffix>
2222

23-
<Version>$(VersionPrefix)$(VersionSuffix)</Version>
23+
<Version>$(VersionPrefix)$(VersionSuffix)</Version>
2424

2525
<AssemblyVersion>$(VersionPrefix).0</AssemblyVersion>
2626
<FileVersion>$(VersionPrefix).$(BuildNumber)</FileVersion>
2727
<LangVersion>latest</LangVersion>
2828
<DebugType>embedded</DebugType>
29-
<EmbedUntrackedSources>true</EmbedUntrackedSources>
29+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
3030
</PropertyGroup>
31-
31+
3232
<PropertyGroup Condition=" '$(Configuration)' == 'Release'">
3333
<SignAssembly>true</SignAssembly>
3434
<AssemblyOriginatorKeyFile>PublicKey.snk</AssemblyOriginatorKeyFile>
3535
<DelaySign>true</DelaySign>
3636
<DefineConstants>$(DefineConstants);RELEASE_BUILD</DefineConstants>
37-
</PropertyGroup>
37+
</PropertyGroup>
3838

3939
<ItemGroup>
4040
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
2+
33
<Import Project="..\..\common.props"/>
44

5-
<PropertyGroup>
5+
<PropertyGroup>
66
<OutputType>Exe</OutputType>
77
<TargetFramework>net6.0</TargetFramework>
88
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
99
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="Newtonsoft.Json" Version="[11.0.2]" />
13+
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
1414
<PackageReference Include="System.Runtime.Handles" Version="4.3.0" />
1515
<PackageReference Include="System.IO.FileSystem.Primitives" Version="4.3.0" />
1616
<PackageReference Include="Mono.Cecil" Version="0.11.3" />
1717
</ItemGroup>
18-
18+
1919
</Project>

src/Microsoft.NET.Sdk.Functions/Microsoft.NET.Sdk.Functions.csproj

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="..\..\src\Microsoft.NET.Sdk.Functions.MSBuild\Targets\ExtensionsMetadataGeneratorVersion.props" />
44
<Import Project="..\..\common.props"/>
55

6-
<PropertyGroup>
6+
<PropertyGroup>
77
<TargetFrameworks>net6.0</TargetFrameworks>
88
<PackageName>Microsoft.NET.Sdk.Functions</PackageName>
99
<Authors>Microsoft</Authors>
@@ -27,26 +27,26 @@
2727
<Content Include="..\..\src\Microsoft.NET.Sdk.Functions.MSBuild\Targets\**\*">
2828
<Pack>true</Pack>
2929
<PackagePath>build\</PackagePath>
30-
<Visible>false</Visible>
30+
<Visible>false</Visible>
3131
</Content>
3232

33-
<!-- MSBuild task assemblies -->
33+
<!-- MSBuild task assemblies -->
3434
<None Include="$(FunctionsBuildTaskOutputPath)\netstandard2.0\Microsoft.NET.Sdk.Functions.MSBuild.dll">
3535
<Pack>true</Pack>
3636
<PackagePath>tools\net6.0\</PackagePath>
37-
<Visible>false</Visible>
37+
<Visible>false</Visible>
3838
</None>
3939

4040
<!-- Generator and dependent assemblies-->
4141
<None Include="$(FunctionsGeneratorOutputPath)\net6.0\Newtonsoft.Json.dll">
4242
<Pack>true</Pack>
4343
<PackagePath>tools\net6.0\</PackagePath>
44-
<Visible>false</Visible>
44+
<Visible>false</Visible>
4545
</None>
4646
<None Include="$(FunctionsGeneratorOutputPath)\net6.0\Mono.Cecil.dll">
4747
<Pack>true</Pack>
4848
<PackagePath>tools\net6.0\</PackagePath>
49-
<Visible>false</Visible>
49+
<Visible>false</Visible>
5050
</None>
5151
<None Include="$(FunctionsGeneratorOutputPath)\net6.0\Microsoft.NET.Sdk.Functions.Generator.dll">
5252
<Pack>true</Pack>
@@ -57,15 +57,15 @@
5757
<Pack>true</Pack>
5858
<PackagePath>tools\net6.0\</PackagePath>
5959
<Visible>false</Visible>
60-
</None>
60+
</None>
6161
</ItemGroup>
6262

6363
<ItemGroup>
6464
<PackageReference Include="Microsoft.Azure.Functions.Analyzers" Version="[1.0.0,2.0.0)" />
65-
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
66-
<PackageReference Include="Microsoft.Azure.WebJobs" Version="[3.0.23,3.1.0)" />
65+
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
66+
<PackageReference Include="Microsoft.Azure.WebJobs" Version="[3.0.32,3.1.0)" />
6767
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions" Version="3.0.6" />
68-
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="[3.0.2,3.1.0)" />
68+
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="[3.2.0,3.3.0)" />
6969
<PackageReference Include="Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator" Version="$(ExtensionsMetadataGeneratorVersion)" />
7070
</ItemGroup>
7171

@@ -76,6 +76,6 @@
7676
<ProjectReference Include="..\Microsoft.NET.Sdk.Functions.Generator\Microsoft.NET.Sdk.Functions.Generator.csproj">
7777
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
7878
</ProjectReference>
79-
</ItemGroup>
79+
</ItemGroup>
8080

8181
</Project>

0 commit comments

Comments
 (0)