Skip to content

Commit

Permalink
Rename assemblies to WebJobs (#114).
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmatson committed Aug 18, 2014
1 parent e612fdd commit 445e080
Show file tree
Hide file tree
Showing 599 changed files with 233 additions and 232 deletions.
2 changes: 1 addition & 1 deletion Build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ else
$ProgramFiles = "$env:ProgramFiles"
}

& "$ProgramFiles\MSBuild\12.0\Bin\MSBuild.exe" Jobs.proj $Args
& "$ProgramFiles\MSBuild\12.0\Bin\MSBuild.exe" WebJobs.proj $Args
18 changes: 9 additions & 9 deletions Jobs.proj → WebJobs.proj
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,23 @@

<ItemGroup>
<!-- The Assembly items below MUST be kept in dependency order. -->
<Build Include="src\Microsoft.Azure.Jobs\Jobs.csproj">
<Build Include="src\Microsoft.Azure.WebJobs\WebJobs.csproj">
<PublishType>Assembly</PublishType>
<PublishPath>$(PublishPath)\Binaries</PublishPath>
</Build>
<Build Include="src\Microsoft.Azure.Jobs.Storage\Jobs.Storage.csproj">
<Build Include="src\Microsoft.Azure.WebJobs.Storage\WebJobs.Storage.csproj">
<PublishType>Assembly</PublishType>
<PublishPath>$(PublishPath)\Binaries</PublishPath>
</Build>
<Build Include="src\Microsoft.Azure.Jobs.Protocols\Jobs.Protocols.csproj">
<Build Include="src\Microsoft.Azure.WebJobs.Protocols\WebJobs.Protocols.csproj">
<PublishType>Assembly</PublishType>
<PublishPath>$(PublishPath)\Binaries</PublishPath>
</Build>
<Build Include="src\Microsoft.Azure.Jobs.Host\Jobs.Host.csproj">
<Build Include="src\Microsoft.Azure.WebJobs.Host\WebJobs.Host.csproj">
<PublishType>Assembly</PublishType>
<PublishPath>$(PublishPath)\Binaries</PublishPath>
</Build>
<Build Include="src\Microsoft.Azure.Jobs.ServiceBus\Jobs.ServiceBus.csproj">
<Build Include="src\Microsoft.Azure.WebJobs.ServiceBus\WebJobs.ServiceBus.csproj">
<PublishType>Assembly</PublishType>
<PublishPath>$(PublishPath)\Binaries</PublishPath>
</Build>
Expand Down Expand Up @@ -94,7 +94,7 @@

<Target Name="RestorePackages" DependsOnTargets="DownloadNuGet">
<Message Text="Restoring NuGet packages..." Importance="High" />
<Exec Command='"$(NuGetExe)" restore Jobs.sln -PackagesDirectory packages -NonInteractive -Verbosity quiet -ConfigFile .nuget\NuGet.Config' />
<Exec Command='"$(NuGetExe)" restore WebJobs.sln -PackagesDirectory packages -NonInteractive -Verbosity quiet -ConfigFile .nuget\NuGet.Config' />
</Target>

<Target Name="GetBinplace">
Expand All @@ -118,8 +118,8 @@

<Target Name="UnitTest" DependsOnTargets="Build">
<ItemGroup>
<UnitTestProjects Include="test\Microsoft.Azure.Jobs.Host.UnitTests\Jobs.Host.UnitTests.csproj"/>
<UnitTestProjects Include="test\Microsoft.Azure.Jobs.ServiceBus.UnitTests\Jobs.ServiceBus.UnitTests.csproj"/>
<UnitTestProjects Include="test\Microsoft.Azure.WebJobs.Host.UnitTests\WebJobs.Host.UnitTests.csproj"/>
<UnitTestProjects Include="test\Microsoft.Azure.WebJobs.ServiceBus.UnitTests\WebJobs.ServiceBus.UnitTests.csproj"/>
<UnitTestProjects Include="test\Dashboard.UnitTests\Dashboard.UnitTests.csproj"/>
</ItemGroup>

Expand All @@ -134,7 +134,7 @@

<Target Name="FunctionalTest" DependsOnTargets="UnitTest">
<ItemGroup>
<FunctionalTestProjects Include="test\Microsoft.Azure.Jobs.Host.EndToEndTests\Jobs.Host.EndToEndTests.csproj"/>
<FunctionalTestProjects Include="test\Microsoft.Azure.WebJobs.Host.EndToEndTests\WebJobs.Host.EndToEndTests.csproj"/>
</ItemGroup>

<MSBuild Projects="@(FunctionalTestProjects)"
Expand Down
24 changes: 12 additions & 12 deletions Jobs.sln → WebJobs.sln
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.30501.0
VisualStudioVersion = 12.0.30723.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{639967B0-0544-4C52-94AC-9A3D25E33256}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Jobs", "src\Microsoft.Azure.Jobs\Jobs.csproj", "{E3F2B2C8-6B8D-4D6A-A3AE-98366C9F3B49}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebJobs", "src\Microsoft.Azure.WebJobs\WebJobs.csproj", "{E3F2B2C8-6B8D-4D6A-A3AE-98366C9F3B49}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Jobs.Host", "src\Microsoft.Azure.Jobs.Host\Jobs.Host.csproj", "{0E095CB2-3030-49FF-966C-785F1A55F0C1}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebJobs.Host", "src\Microsoft.Azure.WebJobs.Host\WebJobs.Host.csproj", "{0E095CB2-3030-49FF-966C-785F1A55F0C1}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Dashboard", "src\Dashboard\Dashboard.csproj", "{45974999-9C53-48AD-83B9-519ECC8AB8F4}"
EndProject
Expand All @@ -23,27 +23,27 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{E4BBC8
.nuget\packages.config = .nuget\packages.config
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Jobs.Host.EndToEndTests", "test\Microsoft.Azure.Jobs.Host.EndToEndTests\Jobs.Host.EndToEndTests.csproj", "{340AB554-5482-4B3D-B65F-46DFF5AF1684}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebJobs.Host.EndToEndTests", "test\Microsoft.Azure.WebJobs.Host.EndToEndTests\WebJobs.Host.EndToEndTests.csproj", "{340AB554-5482-4B3D-B65F-46DFF5AF1684}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Jobs.Host.TestCommon", "test\Microsoft.Azure.Jobs.Host.TestCommon\Jobs.Host.TestCommon.csproj", "{4A832C21-66EA-4DE4-8124-F27F8900CBA9}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebJobs.Host.TestCommon", "test\Microsoft.Azure.WebJobs.Host.TestCommon\WebJobs.Host.TestCommon.csproj", "{4A832C21-66EA-4DE4-8124-F27F8900CBA9}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Jobs.Host.UnitTests", "test\Microsoft.Azure.Jobs.Host.UnitTests\Jobs.Host.UnitTests.csproj", "{CA75D667-A785-4394-AA5C-3A6C658C23A7}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebJobs.Host.UnitTests", "test\Microsoft.Azure.WebJobs.Host.UnitTests\WebJobs.Host.UnitTests.csproj", "{CA75D667-A785-4394-AA5C-3A6C658C23A7}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Jobs.Host.IntegrationTests", "test\Microsoft.Azure.Jobs.Host.IntegrationTests\Jobs.Host.IntegrationTests.csproj", "{31BAB10E-B319-4F4E-9898-EA7A2740AA19}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebJobs.Host.IntegrationTests", "test\Microsoft.Azure.WebJobs.Host.IntegrationTests\WebJobs.Host.IntegrationTests.csproj", "{31BAB10E-B319-4F4E-9898-EA7A2740AA19}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Dashboard.UnitTests", "test\Dashboard.UnitTests\Dashboard.UnitTests.csproj", "{7EF78F7B-C9C9-4311-B87D-50ED5932CC93}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Jobs.ServiceBus", "src\Microsoft.Azure.Jobs.ServiceBus\Jobs.ServiceBus.csproj", "{7B396753-F2D9-4655-929B-BE7E665A4C7E}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebJobs.ServiceBus", "src\Microsoft.Azure.WebJobs.ServiceBus\WebJobs.ServiceBus.csproj", "{7B396753-F2D9-4655-929B-BE7E665A4C7E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Jobs.Protocols", "src\Microsoft.Azure.Jobs.Protocols\Jobs.Protocols.csproj", "{9781D898-5E08-45F1-ACD9-7EA106353AC4}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebJobs.Protocols", "src\Microsoft.Azure.WebJobs.Protocols\WebJobs.Protocols.csproj", "{9781D898-5E08-45F1-ACD9-7EA106353AC4}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "PerformanceTests", "PerformanceTests", "{FA608267-1272-4BD5-B230-0F41A48D18C8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Jobs.Perf", "perf\Microsoft.Azure.Jobs.Perf\Jobs.Perf.csproj", "{34D23554-5482-4B3D-B65F-46DFF5AF1684}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebJobs.Perf", "perf\Microsoft.Azure.WebJobs.Perf\WebJobs.Perf.csproj", "{34D23554-5482-4B3D-B65F-46DFF5AF1684}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Jobs.Storage", "src\Microsoft.Azure.Jobs.Storage\Jobs.Storage.csproj", "{543EDC53-3B68-49A8-9C3F-FC2ED27515AA}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebJobs.Storage", "src\Microsoft.Azure.WebJobs.Storage\WebJobs.Storage.csproj", "{543EDC53-3B68-49A8-9C3F-FC2ED27515AA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Jobs.ServiceBus.UnitTests", "test\Microsoft.Azure.Jobs.ServiceBus.UnitTests\Jobs.ServiceBus.UnitTests.csproj", "{28BC5EE0-9227-4124-AA8F-1C0CAA218D12}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebJobs.ServiceBus.UnitTests", "test\Microsoft.Azure.WebJobs.ServiceBus.UnitTests\WebJobs.ServiceBus.UnitTests.csproj", "{28BC5EE0-9227-4124-AA8F-1C0CAA218D12}"
ProjectSection(ProjectDependencies) = postProject
{4A832C21-66EA-4DE4-8124-F27F8900CBA9} = {4A832C21-66EA-4DE4-8124-F27F8900CBA9}
EndProjectSection
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<commands>
<command name="RunTest" wait="Exit">
Microsoft.Azure.Jobs.Perf.exe /StorageConnectionString={ConnectionString} /Scenario=BlobOverhead
Microsoft.Azure.WebJobs.Perf.exe /StorageConnectionString={ConnectionString} /Scenario=BlobOverhead
</command>
</commands>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

<commands>
<command name="RunTest" wait="Exit">
Microsoft.Azure.Jobs.Perf.exe /StorageConnectionString={ConnectionString} /Scenario=FunctionChaining
Microsoft.Azure.WebJobs.Perf.exe /StorageConnectionString={ConnectionString} /Scenario=FunctionChaining
</command>
</commands>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public static int Main(string[] args)
catch(Exception ex)
{
Console.WriteLine("Usage:");
Console.WriteLine("Microsoft.Azure.Jobs.Perf.exe /Scenario=<scenario name> /StorageConnectionString=<storage connection string>");
Console.WriteLine("Microsoft.Azure.WebJobs.Perf.exe /Scenario=<scenario name> /StorageConnectionString=<storage connection string>");
Console.WriteLine();
Console.WriteLine("--- Exception details ---");
Console.WriteLine(ex.ToString());
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Microsoft.Azure.WebJobs.Perf</RootNamespace>
<AssemblyName>Microsoft.Azure.Jobs.Perf</AssemblyName>
<AssemblyName>Microsoft.Azure.WebJobs.Perf</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
Expand Down Expand Up @@ -96,20 +96,21 @@
</Content>
<Content Include="BlobOverhead.perf.xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<SubType>Designer</SubType>
</Content>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Microsoft.Azure.Jobs.Host\Jobs.Host.csproj">
<ProjectReference Include="..\..\src\Microsoft.Azure.WebJobs.Host\WebJobs.Host.csproj">
<Project>{0e095cb2-3030-49ff-966c-785f1a55f0c1}</Project>
<Name>Jobs.Host</Name>
<Name>WebJobs.Host</Name>
</ProjectReference>
<ProjectReference Include="..\..\src\Microsoft.Azure.Jobs\Jobs.csproj">
<ProjectReference Include="..\..\src\Microsoft.Azure.WebJobs\WebJobs.csproj">
<Project>{e3f2b2c8-6b8d-4d6a-a3ae-98366c9f3b49}</Project>
<Name>Jobs</Name>
<Name>WebJobs</Name>
</ProjectReference>
<ProjectReference Include="..\..\test\Microsoft.Azure.Jobs.Host.TestCommon\Jobs.Host.TestCommon.csproj">
<ProjectReference Include="..\..\test\Microsoft.Azure.WebJobs.Host.TestCommon\WebJobs.Host.TestCommon.csproj">
<Project>{4a832c21-66ea-4de4-8124-f27f8900cba9}</Project>
<Name>Jobs.Host.TestCommon</Name>
<Name>WebJobs.Host.TestCommon</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down
38 changes: 19 additions & 19 deletions src/Dashboard/Dashboard.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -164,37 +164,37 @@
<Compile Include="..\Common\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\Microsoft.Azure.Jobs.Host\Blobs\BlobCausalityManager.cs">
<Compile Include="..\Microsoft.Azure.WebJobs.Host\Blobs\BlobCausalityManager.cs">
<Link>Data\BlobCausalityManager.cs</Link>
</Compile>
<Compile Include="..\Microsoft.Azure.Jobs.Host\Blobs\BlobClient.cs">
<Compile Include="..\Microsoft.Azure.WebJobs.Host\Blobs\BlobClient.cs">
<Link>Data\BlobClient.cs</Link>
</Compile>
<Compile Include="..\Microsoft.Azure.Jobs.Host\Blobs\BlobPath.cs">
<Compile Include="..\Microsoft.Azure.WebJobs.Host\Blobs\BlobPath.cs">
<Link>Data\BlobPath.cs</Link>
</Compile>
<Compile Include="..\Microsoft.Azure.Jobs.Host\ConnectionStringNames.cs">
<Compile Include="..\Microsoft.Azure.WebJobs.Host\ConnectionStringNames.cs">
<Link>Data\ConnectionStringNames.cs</Link>
</Compile>
<Compile Include="..\Microsoft.Azure.Jobs.Host\Executors\AmbientConnectionStringProvider.cs">
<Compile Include="..\Microsoft.Azure.WebJobs.Host\Executors\AmbientConnectionStringProvider.cs">
<Link>Data\AmbientConnectionStringProvider.cs</Link>
</Compile>
<Compile Include="..\Microsoft.Azure.Jobs.Host\Executors\DefaultStorageAccountProvider.cs">
<Compile Include="..\Microsoft.Azure.WebJobs.Host\Executors\DefaultStorageAccountProvider.cs">
<Link>Data\DefaultStorageAccountProvider.cs</Link>
</Compile>
<Compile Include="..\Microsoft.Azure.Jobs.Host\Executors\DefaultStorageCredentialsValidator.cs">
<Compile Include="..\Microsoft.Azure.WebJobs.Host\Executors\DefaultStorageCredentialsValidator.cs">
<Link>Data\DefaultStorageCredentialsValidator.cs</Link>
</Compile>
<Compile Include="..\Microsoft.Azure.Jobs.Host\Executors\IConnectionStringProvider.cs">
<Compile Include="..\Microsoft.Azure.WebJobs.Host\Executors\IConnectionStringProvider.cs">
<Link>Data\IConnectionStringProvider.cs</Link>
</Compile>
<Compile Include="..\Microsoft.Azure.Jobs.Host\Executors\IStorageAccountProvider.cs">
<Compile Include="..\Microsoft.Azure.WebJobs.Host\Executors\IStorageAccountProvider.cs">
<Link>Data\IStorageAccountProvider.cs</Link>
</Compile>
<Compile Include="..\Microsoft.Azure.Jobs.Host\Executors\IStorageCredentialsValidator.cs">
<Compile Include="..\Microsoft.Azure.WebJobs.Host\Executors\IStorageCredentialsValidator.cs">
<Link>Data\IStorageCredentialsValidator.cs</Link>
</Compile>
<Compile Include="..\Microsoft.Azure.Jobs.Host\StorageClient.cs">
<Compile Include="..\Microsoft.Azure.WebJobs.Host\StorageClient.cs">
<Link>Data\StorageClient.cs</Link>
</Compile>
<Compile Include="ApiControllers\FunctionsController.cs" />
Expand Down Expand Up @@ -445,21 +445,21 @@
<Content Include="Views\_ViewStart.cshtml" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Microsoft.Azure.Jobs.Protocols\Jobs.Protocols.csproj">
<ProjectReference Include="..\Microsoft.Azure.WebJobs.Protocols\WebJobs.Protocols.csproj">
<Project>{9781d898-5e08-45f1-acd9-7ea106353ac4}</Project>
<Name>Jobs.Protocols</Name>
<Name>WebJobs.Protocols</Name>
</ProjectReference>
<ProjectReference Include="..\Microsoft.Azure.Jobs.ServiceBus\Jobs.ServiceBus.csproj">
<ProjectReference Include="..\Microsoft.Azure.WebJobs.ServiceBus\WebJobs.ServiceBus.csproj">
<Project>{7b396753-f2d9-4655-929b-be7e665a4c7e}</Project>
<Name>Jobs.ServiceBus</Name>
<Name>WebJobs.ServiceBus</Name>
</ProjectReference>
<ProjectReference Include="..\Microsoft.Azure.Jobs.Storage\Jobs.Storage.csproj">
<ProjectReference Include="..\Microsoft.Azure.WebJobs.Storage\WebJobs.Storage.csproj">
<Project>{543edc53-3b68-49a8-9c3f-fc2ed27515aa}</Project>
<Name>Jobs.Storage</Name>
<Name>WebJobs.Storage</Name>
</ProjectReference>
<ProjectReference Include="..\Microsoft.Azure.Jobs\Jobs.csproj">
<ProjectReference Include="..\Microsoft.Azure.WebJobs\WebJobs.csproj">
<Project>{e3f2b2c8-6b8d-4d6a-a3ae-98366c9f3b49}</Project>
<Name>Jobs</Name>
<Name>WebJobs</Name>
</ProjectReference>
</ItemGroup>
<PropertyGroup>
Expand Down
14 changes: 7 additions & 7 deletions src/Microsoft.Azure.Jobs.Core.NuGet/Jobs.Core.nuproj
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), Jobs.sln))\tools\Jobs.settings.targets"/>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), WebJobs.sln))\tools\Jobs.settings.targets"/>
<PropertyGroup>
<NuSpecFile>$(MSBuildProjectName).nuspec</NuSpecFile>
<NuGetPackageId>Microsoft.Azure.Jobs.Core</NuGetPackageId>
<NuGetPackageVersion>$(JobsPackageVersion)</NuGetPackageVersion>
<NuGetPackSymbols>false</NuGetPackSymbols>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Microsoft.Azure.Jobs\Jobs.csproj">
<ProjectReference Include="..\Microsoft.Azure.WebJobs\WebJobs.csproj">
<Project>{e3f2b2c8-6b8d-4d6a-a3ae-98366c9f3b49}</Project>
<Name>Jobs</Name>
<Name>WebJobs</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<NuGetContent Include="$(JobsRootPath)\src\Microsoft.Azure.Jobs\bin\$(Configuration)\Microsoft.Azure.Jobs.dll">
<Destination>lib\net45\Microsoft.Azure.Jobs.dll</Destination>
<NuGetContent Include="$(JobsRootPath)\src\Microsoft.Azure.WebJobs\bin\$(Configuration)\Microsoft.Azure.WebJobs.dll">
<Destination>lib\net45\Microsoft.Azure.WebJobs.dll</Destination>
</NuGetContent>
<NuGetContent Include="$(JobsRootPath)\src\Microsoft.Azure.Jobs\bin\$(Configuration)\Microsoft.Azure.Jobs.xml">
<Destination>lib\net45\Microsoft.Azure.Jobs.xml</Destination>
<NuGetContent Include="$(JobsRootPath)\src\Microsoft.Azure.WebJobs\bin\$(Configuration)\Microsoft.Azure.WebJobs.xml">
<Destination>lib\net45\Microsoft.Azure.WebJobs.xml</Destination>
</NuGetContent>
</ItemGroup>
<Import Project="$(JobsToolsPath)NuGetProj.targets"/>
Expand Down
Loading

0 comments on commit 445e080

Please sign in to comment.