Skip to content

Commit

Permalink
Fixing deps validation tests, PR feedback changes
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiocav committed May 8, 2024
1 parent 06ac73d commit bf23160
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "8.0.204",
"version": "8.0.101",
"rollForward": "latestFeature"
},
"msbuild-sdks": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\build\common.props" />
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>1.0.4-preview</Version>
<BuildNumber Condition=" '$(BuildNumber)' == '' ">1</BuildNumber>
<MajorMinorProductVersion>1.0</MajorMinorProductVersion>
Expand Down
6 changes: 6 additions & 0 deletions test/WebJobs.Script.Tests/WebJobs.Script.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,12 @@
<ItemGroup>
<None Include="Description\DotNet\TestFiles\**\*.proj" />
<None Update="Description\DotNet\TestFiles\**" CopyToOutputDirectory="PreserveNewest" />
<None Update="DepsFiles\net6.0\Microsoft.Azure.WebJobs.Script.WebHost.deps.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="DepsFiles\net8.0\Microsoft.Azure.WebJobs.Script.WebHost.deps.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Microsoft.Azure.WebJobs.Script.WebHost.deps.json" CopyToOutputDirectory="PreserveNewest" />
<None Update="TestFixture\HostOptionsProviderTests\*.json" CopyToOutputDirectory="PreserveNewest" />
<None Update="Workers\Rpc\Resources\**" CopyToOutputDirectory="PreserveNewest" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
</PropertyGroup>

<ItemGroup>
<None Remove="ExistingRuntimeAssemblies-net6.txt" />
<None Remove="ExistingRuntimeAssemblies-net8.txt" />
<None Remove="ExistingRuntimeAssemblies-*.txt" />
<RuntimeAssemblyFiles Include="runtimeassemblies*.txt" />
</ItemGroup>

Expand Down Expand Up @@ -38,10 +37,7 @@
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="ExistingRuntimeAssemblies-net8.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
<EmbeddedResource Include="ExistingRuntimeAssemblies-net6.txt">
<EmbeddedResource Include="ExistingRuntimeAssemblies-*.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
Expand Down

0 comments on commit bf23160

Please sign in to comment.