Add license

This commit is contained in:
voltsrage
2026-06-25 15:30:21 +08:00
parent 26bef39aae
commit 131a04630d
6 changed files with 105 additions and 2 deletions
+89
View File
@@ -0,0 +1,89 @@
Proprietary Software License Agreement
Copyright (c) 2024-2026 voltsrage. All Rights Reserved.
NOTICE: This software and all associated documentation, source code, object
code, APIs, designs, algorithms, data models, and related materials
(collectively, the "Software") are the exclusive property of voltsrage and
are protected by copyright law, trade secret law, and international treaties.
1. LICENSE GRANT
No license, right, or interest in the Software is granted except under a
separate, signed commercial license agreement between voltsrage and the
licensee. Possession of a copy of the Software does not convey any rights
to use, modify, distribute, sublicense, or create derivative works from
the Software.
2. RESTRICTIONS
Without a valid commercial license, you may NOT:
a. Use the Software or any portion thereof for any purpose, including but
not limited to commercial, personal, educational, or evaluation use;
b. Copy, reproduce, or duplicate the Software in whole or in part;
c. Modify, adapt, translate, reverse engineer, decompile, disassemble, or
create derivative works based on the Software;
d. Distribute, sublicense, lease, rent, loan, sell, or otherwise transfer
the Software or any rights therein to any third party;
e. Remove, alter, or obscure any proprietary notices, labels, or marks on
the Software;
f. Use the Software to provide services to third parties (including but not
limited to SaaS, hosting, or managed services) without a separate
service provider license.
3. CONFIDENTIALITY
The Software contains trade secrets and proprietary information of
voltsrage. You agree to hold the Software in strict confidence and not to
disclose it to any third party without prior written consent from
voltsrage.
4. INTELLECTUAL PROPERTY
All title, ownership rights, and intellectual property rights in and to the
Software, including but not limited to patents, copyrights, trademarks,
trade secrets, and any improvements or modifications thereto, shall remain
the sole and exclusive property of voltsrage.
5. COMMERCIAL LICENSING
Commercial licenses for the Software, including licenses for individual
components, modules, or the complete system, are available from voltsrage.
Contact voltsrage for licensing terms, pricing, and permitted use.
6. TERMINATION
Any unauthorized use, reproduction, or distribution of the Software
automatically terminates any implied rights and may result in civil and
criminal penalties. voltsrage reserves the right to pursue all available
legal remedies.
7. WARRANTY DISCLAIMER
THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. VOLTSRAGE DOES NOT
WARRANT THAT THE SOFTWARE WILL BE ERROR-FREE, UNINTERRUPTED, OR FREE OF
HARMFUL COMPONENTS.
8. LIMITATION OF LIABILITY
IN NO EVENT SHALL VOLTSRAGE BE LIABLE FOR ANY INDIRECT, INCIDENTAL,
SPECIAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES, OR ANY LOSS OF PROFITS,
REVENUE, DATA, OR USE, ARISING OUT OF OR RELATED TO THE SOFTWARE, EVEN IF
ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
9. GOVERNING LAW
This Agreement shall be governed by and construed in accordance with
applicable law, without regard to conflict of law principles.
10. ENTIRE AGREEMENT
This License constitutes the entire agreement regarding the Software and
supersedes all prior agreements, understandings, and representations. No
modification of this License shall be binding unless in writing and signed
by voltsrage.
For licensing inquiries, contact: voltsrage
@@ -5,6 +5,9 @@
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<RootNamespace>VigilCare.ClinicalContracts</RootNamespace> <RootNamespace>VigilCare.ClinicalContracts</RootNamespace>
<Copyright>Copyright (c) 2024-2026 voltsrage. All Rights Reserved.</Copyright>
<Authors>voltsrage</Authors>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup> </PropertyGroup>
</Project> </Project>
@@ -5,6 +5,9 @@
<TargetFramework>net8.0</TargetFramework> <TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<Copyright>Copyright (c) 2024-2026 voltsrage. All Rights Reserved.</Copyright>
<Authors>voltsrage</Authors>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
@@ -4,6 +4,9 @@
<TargetFramework>net8.0</TargetFramework> <TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<Copyright>Copyright (c) 2024-2026 voltsrage. All Rights Reserved.</Copyright>
<Authors>voltsrage</Authors>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
@@ -6,6 +6,9 @@
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<GenerateDocumentationFile>true</GenerateDocumentationFile> <GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn> <NoWarn>$(NoWarn);1591</NoWarn>
<Copyright>Copyright (c) 2024-2026 voltsrage. All Rights Reserved.</Copyright>
<Authors>voltsrage</Authors>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
@@ -40,8 +43,8 @@
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.2.1" /> <PackageReference Include="Swashbuckle.AspNetCore" Version="10.2.1" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\VigilCare.ClinicalContracts\VigilCare.ClinicalContracts.csproj" /> <ProjectReference Include="..\VigilCare.ClinicalContracts\VigilCare.ClinicalContracts.csproj" />
</ItemGroup> </ItemGroup>
</Project> </Project>
+2
View File
@@ -2,6 +2,8 @@
"name": "vigilcare-dashboard", "name": "vigilcare-dashboard",
"private": true, "private": true,
"version": "0.0.0", "version": "0.0.0",
"license": "SEE LICENSE IN LICENSE",
"author": "voltsrage",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",