Skip to content

Commit 506c26d

Browse files
Kroach/oasis 1439 sign (#30)
* Bump version number to 1.2.1 * Remove portions of <dependencies> and update <version> . * Update pack.ps1 * Check on 'Delay sign assembly' for all project 'Options' / 'Build' / 'Assembly Signing' * Update third party NuGet package versions. * Built unsigned Optimizely.SDK.1.2.1.nupkg * Revert "Update third party NuGet package versions." This reverts commit ae560b8. * Rebuild Optimizely.SDK.1.2.1.nupkg * Add third party licenses. * Update OptimizelySDK.nuspec and pack.ps1 . * Update pack.ps1 . * Move src 'licenses' subdirectory. * licenses --> Licenses * Add keypair.snk generated by 'sn -k keypair.snk' * Strong sign (sn.exe) Optimizely assemblies with keypair.snk * Use 'Licenses/<NuGet-package-identifier>' * Switch 'murmurhash 1.0.0' to 'murmurhash-signed 1.0.2', add <projectUrl>, rebuild *.nupkg * Add strong naming (sn.exe) calls to pack.ps1 . * Rebuild Optimizely.SDK.1.2.1.nupkg * Update *.nuspec <releaseNotes> * Add *.nuspec <iconUrl> * Rebuild Optimizely.SDK.1.2.1.nupkg * Update CHANGELOG.MD * Update README.md * Add 'Digital Signing (signtool.exe)' to pack.ps1 * Rebuild Optimizely.SDK.1.2.1.nupkg * Rebuild Optimizely.SDK.1.2.1.nupkg * Update CHANGELOG.md * '\lib' --> '.\lib' in pack.ps1 * Add verifysn.ps1 * Update CHANGELOG.md
1 parent e3384b8 commit 506c26d

File tree

35 files changed

+10764
-82
lines changed

35 files changed

+10764
-82
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,8 @@ publish/
147147
*.publishproj
148148

149149
# NuGet Packages
150-
*.nupkg
150+
# Allow Optimizely built *.nupkg to be checked in.
151+
# *.nupkg
151152
# The packages folder can be ignored because of Package Restore
152153
**/packages/*
153154
# except build/, which is used as an MSBuild target.
@@ -241,4 +242,5 @@ ModelManifest.xml
241242
# FAKE - F# Make
242243
.fake/
243244
OptimizelySDK.Package/nuget.exe
245+
OptimizelySDK.Package/content
244246
OptimizelySDK.Package/lib

CHANGELOG.MD renamed to CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 1.2.1
2+
November 6, 2017
3+
4+
### New Features
5+
* Package DLL's including third party component DLL's are strongnamed and digitally signed by Optimizely.
6+
7+
* DecisionService GetVariationForFeatureRollout added.
8+
9+
* Feature Flag and Rollout models added.
10+
11+
* Implemented Bucketing ID feature.
12+
113
## 1.2.0
214
October 4, 2017
315

OptimizelySDK.DemoApp/OptimizelySDK.DemoApp.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
<NuGetPackageImportStamp>
2727
</NuGetPackageImportStamp>
2828
<TargetFrameworkProfile />
29+
<ReleaseVersion>1.2.1</ReleaseVersion>
2930
</PropertyGroup>
3031
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
3132
<DebugSymbols>false</DebugSymbols>

OptimizelySDK.DemoApp/Properties/AssemblyInfo.cs

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@
1919
// COM, set the ComVisible attribute to true on that type.
2020
[assembly: ComVisible(false)]
2121

22+
// Make types and members with internal scope visible to friend
23+
// OptimizelySDK.Tests unit tests.
24+
#pragma warning disable 1700
25+
[assembly: InternalsVisibleTo("OptimizelySDK.Tests, PublicKey=ThePublicKey")]
26+
#pragma warning restore 1700
27+
2228
// The following GUID is for the ID of the typelib if this project is exposed to COM
2329
[assembly: Guid("732a5e33-93e5-476d-af8a-e06279c2d28d")]
2430

@@ -31,5 +37,6 @@
3137
//
3238
// You can specify all the values or you can default the Revision and Build Numbers
3339
// by using the '*' as shown below:
34-
[assembly: AssemblyVersion("1.0.0.0")]
35-
[assembly: AssemblyFileVersion("1.0.0.0")]
40+
[assembly: AssemblyVersion("1.2.1.0")]
41+
[assembly: AssemblyFileVersion("1.2.1.0")]
42+
[assembly: AssemblyInformationalVersion("1.2.1")] // Used by Nuget.

OptimizelySDK.Net35/OptimizelySDK.Net35.csproj

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
<AssemblyName>OptimizelySDK.Net35</AssemblyName>
1212
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
14+
<ReleaseVersion>1.2.1</ReleaseVersion>
15+
<SignAssembly>true</SignAssembly>
16+
<AssemblyOriginatorKeyFile>..\keypair.snk</AssemblyOriginatorKeyFile>
1417
</PropertyGroup>
1518
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1619
<DebugSymbols>true</DebugSymbols>
@@ -28,12 +31,17 @@
2831
<DefineConstants>TRACE;NET35</DefineConstants>
2932
<ErrorReport>prompt</ErrorReport>
3033
<WarningLevel>4</WarningLevel>
34+
<CustomCommands>
35+
<CustomCommands>
36+
<Command>
37+
<type>AfterBuild</type>
38+
<command>sn -R "bin/Release/OptimizelySDK.Net35.dll" "../keypair.snk"</command>
39+
<workingdir>${ProjectDir}</workingdir>
40+
</Command>
41+
</CustomCommands>
42+
</CustomCommands>
3143
</PropertyGroup>
3244
<ItemGroup>
33-
<Reference Include="MurmurHash, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
34-
<HintPath>..\packages\murmurhash.1.0.0\lib\net35\MurmurHash.dll</HintPath>
35-
<Private>True</Private>
36-
</Reference>
3745
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
3846
<HintPath>..\packages\Newtonsoft.Json.9.0.1\lib\net35\Newtonsoft.Json.dll</HintPath>
3947
</Reference>
@@ -43,6 +51,9 @@
4351
<Reference Include="System.Data.DataSetExtensions" />
4452
<Reference Include="System.Data" />
4553
<Reference Include="System.Xml" />
54+
<Reference Include="MurmurHash">
55+
<HintPath>..\packages\murmurhash-signed.1.0.2\lib\net35\MurmurHash.dll</HintPath>
56+
</Reference>
4657
</ItemGroup>
4758
<ItemGroup>
4859
<Compile Include="..\OptimizelySDK\Entity\Attribute.cs">
@@ -190,4 +201,4 @@
190201
<Target Name="AfterBuild">
191202
</Target>
192203
-->
193-
</Project>
204+
</Project>

OptimizelySDK.Net35/Properties/AssemblyInfo.cs

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@
1919
// COM, set the ComVisible attribute to true on that type.
2020
[assembly: ComVisible(false)]
2121

22+
// Make types and members with internal scope visible to friend
23+
// OptimizelySDK.Tests unit tests.
24+
#pragma warning disable 1700
25+
[assembly: InternalsVisibleTo("OptimizelySDK.Tests, PublicKey=ThePublicKey")]
26+
#pragma warning restore 1700
27+
2228
// The following GUID is for the ID of the typelib if this project is exposed to COM
2329
[assembly: Guid("c8ff7012-37b7-4d64-ab45-0c62195302ec")]
2430

@@ -32,5 +38,6 @@
3238
// You can specify all the values or you can default the Build and Revision Numbers
3339
// by using the '*' as shown below:
3440
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
41+
[assembly: AssemblyVersion("1.2.1.0")]
42+
[assembly: AssemblyFileVersion("1.2.1.0")]
43+
[assembly: AssemblyInformationalVersion("1.2.1")] // Used by Nuget.

OptimizelySDK.Net35/packages.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="murmurhash" version="1.0.0" targetFramework="net35" />
3+
<package id="murmurhash-signed" version="1.0.2" targetFramework="net35" />
44
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net35" />
5-
</packages>
5+
</packages>

OptimizelySDK.Net40/OptimizelySDK.Net40.csproj

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -11,6 +11,9 @@
1111
<AssemblyName>OptimizelySDK.Net40</AssemblyName>
1212
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
14+
<ReleaseVersion>1.2.1</ReleaseVersion>
15+
<SignAssembly>true</SignAssembly>
16+
<AssemblyOriginatorKeyFile>..\keypair.snk</AssemblyOriginatorKeyFile>
1417
</PropertyGroup>
1518
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1619
<DebugSymbols>true</DebugSymbols>
@@ -28,11 +31,17 @@
2831
<DefineConstants>TRACE;NET35</DefineConstants>
2932
<ErrorReport>prompt</ErrorReport>
3033
<WarningLevel>4</WarningLevel>
34+
<CustomCommands>
35+
<CustomCommands>
36+
<Command>
37+
<type>AfterBuild</type>
38+
<command>sn -R "bin/Release/OptimizelySDK.Net40.dll" "../keypair.snk"</command>
39+
<workingdir>${ProjectDir}</workingdir>
40+
</Command>
41+
</CustomCommands>
42+
</CustomCommands>
3143
</PropertyGroup>
3244
<ItemGroup>
33-
<Reference Include="MurmurHash, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
34-
<HintPath>..\packages\murmurhash.1.0.0\lib\net40\MurmurHash.dll</HintPath>
35-
</Reference>
3645
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
3746
<HintPath>..\packages\Newtonsoft.Json.9.0.1\lib\net40\Newtonsoft.Json.dll</HintPath>
3847
</Reference>
@@ -43,6 +52,9 @@
4352
<Reference Include="Microsoft.CSharp" />
4453
<Reference Include="System.Data" />
4554
<Reference Include="System.Xml" />
55+
<Reference Include="MurmurHash">
56+
<HintPath>..\packages\murmurhash-signed.1.0.2\lib\net40\MurmurHash.dll</HintPath>
57+
</Reference>
4658
</ItemGroup>
4759
<ItemGroup>
4860
<Compile Include="..\OptimizelySDK\Entity\Attribute.cs">
@@ -183,4 +195,4 @@
183195
<None Include="packages.config" />
184196
</ItemGroup>
185197
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
186-
</Project>
198+
</Project>

OptimizelySDK.Net40/Properties/AssemblyInfo.cs

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@
1919
// COM, set the ComVisible attribute to true on that type.
2020
[assembly: ComVisible(false)]
2121

22+
// Make types and members with internal scope visible to friend
23+
// OptimizelySDK.Tests unit tests.
24+
#pragma warning disable 1700
25+
[assembly: InternalsVisibleTo("OptimizelySDK.Tests, PublicKey=ThePublicKey")]
26+
#pragma warning restore 1700
27+
2228
// The following GUID is for the ID of the typelib if this project is exposed to COM
2329
[assembly: Guid("41afd990-bc81-49e3-bd85-40972bb2c262")]
2430

@@ -32,5 +38,6 @@
3238
// You can specify all the values or you can default the Build and Revision Numbers
3339
// by using the '*' as shown below:
3440
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
41+
[assembly: AssemblyVersion("1.2.1.0")]
42+
[assembly: AssemblyFileVersion("1.2.1.0")]
43+
[assembly: AssemblyInformationalVersion("1.2.1")] // Used by Nuget.

OptimizelySDK.Net40/packages.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="murmurhash" version="1.0.0" targetFramework="net40" />
3+
<package id="murmurhash-signed" version="1.0.2" targetFramework="net40" />
44
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net40" />
5-
</packages>
5+
</packages>

OptimizelySDK.NetStandard16/OptimizelySDK.NetStandard16.csproj

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,22 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard1.6</TargetFramework>
5+
<ReleaseVersion>1.2.1</ReleaseVersion>
6+
<SignAssembly>true</SignAssembly>
7+
<AssemblyOriginatorKeyFile>..\keypair.snk</AssemblyOriginatorKeyFile>
58
</PropertyGroup>
69

10+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
11+
<CustomCommands>
12+
<CustomCommands>
13+
<Command>
14+
<type>AfterBuild</type>
15+
<command>sn -R "bin/Release/netstandard1.6/OptimizelySDK.NetStandard16.dll" "../keypair.snk"</command>
16+
<workingdir>${ProjectDir}</workingdir>
17+
</Command>
18+
</CustomCommands>
19+
</CustomCommands>
20+
</PropertyGroup>
721
<ItemGroup>
822
<Compile Include="..\OptimizelySDK\Entity\Attribute.cs" />
923
<Compile Include="..\OptimizelySDK\Entity\Audience.cs" />
@@ -20,7 +34,7 @@
2034
<Compile Include="..\OptimizelySDK\Entity\FeatureVariableUsage.cs" />
2135
<Compile Include="..\OptimizelySDK\Entity\FeatureFlag.cs" />
2236
<Compile Include="..\OptimizelySDK\Entity\FeatureVariable.cs" />
23-
<Compile Include="..\OptimizelySDK\Entity\Rollout.cs"/>
37+
<Compile Include="..\OptimizelySDK\Entity\Rollout.cs" />
2438
<Compile Include="..\OptimizelySDK\ErrorHandler\DefaultErrorHandler.cs" />
2539
<Compile Include="..\OptimizelySDK\ErrorHandler\IErrorHandler.cs" />
2640
<Compile Include="..\OptimizelySDK\ErrorHandler\NoOpErrorHandler.cs" />
@@ -58,9 +72,9 @@
5872
</EmbeddedResource>
5973
</ItemGroup>
6074
<ItemGroup>
61-
<PackageReference Include="MurmurHash-net-core" Version="1.0.0" />
6275
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
6376
<PackageReference Include="NJsonSchema" Version="8.33.6323.36213" />
77+
<PackageReference Include="murmurhash-signed" Version="1.0.2" />
6478
</ItemGroup>
6579

66-
</Project>
80+
</Project>
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
Apache License
2+
3+
Version 2.0, January 2004
4+
5+
http://www.apache.org/licenses/
6+
7+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
8+
9+
1. Definitions.
10+
11+
"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
12+
13+
"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
14+
15+
"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
16+
17+
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
18+
19+
"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
20+
21+
"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
22+
23+
"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
24+
25+
"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
26+
27+
"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
28+
29+
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
30+
31+
2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
32+
33+
3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
34+
35+
4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
36+
37+
You must give any other recipients of the Work or Derivative Works a copy of this License; and
38+
39+
You must cause any modified files to carry prominent notices stating that You changed the files; and
40+
41+
You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
42+
43+
If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
44+
45+
5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
46+
47+
6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
48+
49+
7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
50+
51+
8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
52+
53+
9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.

0 commit comments

Comments
 (0)