This repository has been archived by the owner on Feb 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from imranmomin/develop
3.0.2
- Loading branch information
Showing
9 changed files
with
1,315 additions
and
1,314 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
154 changes: 77 additions & 77 deletions
154
Hangfire.AzureDocumentDB/Hangfire.AzureDocumentDB.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,78 +1,78 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks> | ||
<ProductName>Hangfire.AzureDocumentDB</ProductName> | ||
<Title>Hangfire.AzureDocumentDB</Title> | ||
<Company>Hangfire.AzureDocumentDB</Company> | ||
<Authors>Imran Momin</Authors> | ||
<PackageLicense>https://github.com/imranmomin/hangfire.azuredocumentdb/blob/master/LICENSE</PackageLicense> | ||
<PackageProjectUrl>https://github.com/imranmomin/hangfire.azuredocumentdb</PackageProjectUrl> | ||
<Copyright>Copyright 2018</Copyright> | ||
<PackageTags>Hangfire Azure DocumentDB Cosmos</PackageTags> | ||
<Description>This package adds support to Microsoft Azure DocumentDB for Hangfire</Description> | ||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> | ||
<PackageVersion>1.0.1</PackageVersion> | ||
<Version>2.0.0</Version> | ||
<FileVersion>2.0.0.0</FileVersion> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<RootNamespace>Hangfire.Azure</RootNamespace> | ||
<TypeScriptToolsVersion>Latest</TypeScriptToolsVersion> | ||
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> | ||
<DefineConstants>NETCORE;NETSTANDARD;NETSTANDARD2_0</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(TargetFramework)' == 'net461'"> | ||
<DefineConstants>NET461;NETFULL</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net461|AnyCPU'"> | ||
<DocumentationFile>bin\Release\net461\Hangfire.AzureDocumentDB.xml</DocumentationFile> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'"> | ||
<DocumentationFile>bin\Release\netstandard2.0\Hangfire.AzureDocumentDB.xml</DocumentationFile> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<None Remove="node_modules\**" /> | ||
<None Remove="package-lock.json" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Include="StoredProcedure\heartbeatServer.js"> | ||
<DependentUpon>heartbeatServer.ts</DependentUpon> | ||
</EmbeddedResource> | ||
<EmbeddedResource Include="StoredProcedure\setJobParameter.js"> | ||
<DependentUpon>setJobParameter.ts</DependentUpon> | ||
</EmbeddedResource> | ||
<EmbeddedResource Include="StoredProcedure\setJobState.js"> | ||
<DependentUpon>setJobState.ts</DependentUpon> | ||
</EmbeddedResource> | ||
<EmbeddedResource Include="StoredProcedure\persistDocuments.js"> | ||
<DependentUpon>persistDocuments.ts</DependentUpon> | ||
</EmbeddedResource> | ||
<EmbeddedResource Include="StoredProcedure\expireDocuments.js"> | ||
<DependentUpon>expireDocuments.ts</DependentUpon> | ||
</EmbeddedResource> | ||
<EmbeddedResource Include="StoredProcedure\deleteDocuments.js"> | ||
<DependentUpon>deleteDocuments.ts</DependentUpon> | ||
</EmbeddedResource> | ||
<EmbeddedResource Include="StoredProcedure\upsertDocuments.js"> | ||
<DependentUpon>upsertDocuments.ts</DependentUpon> | ||
</EmbeddedResource> | ||
<None Include="StoredProcedure\document.js"> | ||
<DependentUpon>document.ts</DependentUpon> | ||
</None> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Hangfire.Core" Version="1.6.21" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" /> | ||
<PackageReference Include="System.ValueTuple" Version="4.5.0" /> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> | ||
<PackageReference Include="Microsoft.Azure.DocumentDB.Core" Version="2.2.0" /> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'net461'"> | ||
<PackageReference Include="Microsoft.Azure.DocumentDB" Version="2.2.0" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Folder Include="Properties\" /> | ||
</ItemGroup> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks> | ||
<ProductName>Hangfire.AzureDocumentDB</ProductName> | ||
<Title>Hangfire.AzureDocumentDB</Title> | ||
<Company>Hangfire.AzureDocumentDB</Company> | ||
<Authors>Imran Momin</Authors> | ||
<PackageLicense>https://github.com/imranmomin/hangfire.azuredocumentdb/blob/master/LICENSE</PackageLicense> | ||
<PackageProjectUrl>https://github.com/imranmomin/hangfire.azuredocumentdb</PackageProjectUrl> | ||
<Copyright>Copyright 2018</Copyright> | ||
<PackageTags>Hangfire Azure DocumentDB Cosmos</PackageTags> | ||
<Description>This package adds support to Microsoft Azure DocumentDB for Hangfire</Description> | ||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> | ||
<PackageVersion>1.0.1</PackageVersion> | ||
<Version>2.0.0</Version> | ||
<FileVersion>2.0.0.0</FileVersion> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<RootNamespace>Hangfire.Azure</RootNamespace> | ||
<TypeScriptToolsVersion>Latest</TypeScriptToolsVersion> | ||
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> | ||
<DefineConstants>NETCORE;NETSTANDARD;NETSTANDARD2_0</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(TargetFramework)' == 'net461'"> | ||
<DefineConstants>NET461;NETFULL</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net461|AnyCPU'"> | ||
<DocumentationFile>bin\Release\net461\Hangfire.AzureDocumentDB.xml</DocumentationFile> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'"> | ||
<DocumentationFile>bin\Release\netstandard2.0\Hangfire.AzureDocumentDB.xml</DocumentationFile> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<None Remove="node_modules\**" /> | ||
<None Remove="package-lock.json" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Include="StoredProcedure\heartbeatServer.js"> | ||
<DependentUpon>heartbeatServer.ts</DependentUpon> | ||
</EmbeddedResource> | ||
<EmbeddedResource Include="StoredProcedure\setJobParameter.js"> | ||
<DependentUpon>setJobParameter.ts</DependentUpon> | ||
</EmbeddedResource> | ||
<EmbeddedResource Include="StoredProcedure\setJobState.js"> | ||
<DependentUpon>setJobState.ts</DependentUpon> | ||
</EmbeddedResource> | ||
<EmbeddedResource Include="StoredProcedure\persistDocuments.js"> | ||
<DependentUpon>persistDocuments.ts</DependentUpon> | ||
</EmbeddedResource> | ||
<EmbeddedResource Include="StoredProcedure\expireDocuments.js"> | ||
<DependentUpon>expireDocuments.ts</DependentUpon> | ||
</EmbeddedResource> | ||
<EmbeddedResource Include="StoredProcedure\deleteDocuments.js"> | ||
<DependentUpon>deleteDocuments.ts</DependentUpon> | ||
</EmbeddedResource> | ||
<EmbeddedResource Include="StoredProcedure\upsertDocuments.js"> | ||
<DependentUpon>upsertDocuments.ts</DependentUpon> | ||
</EmbeddedResource> | ||
<None Include="StoredProcedure\document.js"> | ||
<DependentUpon>document.ts</DependentUpon> | ||
</None> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Hangfire.Core" Version="1.7.3" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" /> | ||
<PackageReference Include="System.ValueTuple" Version="4.5.0" /> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> | ||
<PackageReference Include="Microsoft.Azure.DocumentDB.Core" Version="2.4.0" /> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'net461'"> | ||
<PackageReference Include="Microsoft.Azure.DocumentDB" Version="2.4.0" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Folder Include="Properties\" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.