Build hashfile only in release mode (#346)
* Update README to include Powershell requirement * Build hashfile only in release, only check hashes in release mode * Remove duplicate README
This commit is contained in:
@@ -1,90 +0,0 @@
|
||||
# Single Player Tarkov - Server Project
|
||||
|
||||
This is the Server project for the Single Player Tarkov mod for Escape From Tarkov. It can be run locally to replicate responses to the modified Escape From Tarkov client
|
||||
|
||||
|
||||
# Table of Contents
|
||||
|
||||
- [Features](#features)
|
||||
- [Installation](#installation)
|
||||
- [Requirements](#requirements)
|
||||
- [Initial Setup](#initial-setup)
|
||||
- [Development](#development)
|
||||
- [Commands](#commands)
|
||||
- [Debugging](#debugging)
|
||||
- [Mod Debugging](#mod-debugging)
|
||||
- [Contributing](#contributing)
|
||||
- [Branches](#branchs)
|
||||
- [Pull Request Guidelines](#pull-request-guidelines)
|
||||
- [Tests](#tests)
|
||||
- [License](#license)
|
||||
|
||||
## Features
|
||||
|
||||
For a full list of features, please see [FEATURES.md](FEATURES.md)
|
||||
|
||||
## Installation
|
||||
|
||||
### Requirements
|
||||
|
||||
This project has been built in [Visual Studio](https://visualstudio.microsoft.com/) (VS) and [Rider](https://www.jetbrains.com/rider/) using [.NET](https://dotnet.microsoft.com/en-us/)
|
||||
|
||||
### Initial Setup
|
||||
|
||||
To prepare the project for development you will need to:
|
||||
|
||||
1. Run `git clone https://github.com/sp-tarkov/server-csharp.git server` to clone the repository
|
||||
2. Run `git lfs pull` to download LFS files locally.
|
||||
3. Open the `project/server-csharp.sln` file in Visual Studio or Rider
|
||||
4. Run `Build > Build Solution (CTRL + SHIFT + B)` in the IDE
|
||||
|
||||
## Development
|
||||
|
||||
### Commands
|
||||
|
||||
### Debugging
|
||||
|
||||
To debug the project in Visual Studio Code:
|
||||
1. Choose `Server` and `Spt Server Debug` in the debug dropdowns
|
||||
2. Choose `Debug > Start Debugging (F5)` to run the server
|
||||
|
||||
### Mod Debugging
|
||||
|
||||
To debug a server mod in Visual Studio, you can copy the mod DLL into the `user/mods` folder and then start the server
|
||||
|
||||
## Contributing
|
||||
|
||||
We're really excited that you're interested in contributing! Before submitting your contribution, please consider the following:
|
||||
|
||||
### Branches
|
||||
|
||||
- **master**
|
||||
The default branch used for the latest stable release. This branch is protected and typically is only merged with release branches.
|
||||
- **development**
|
||||
The main branch for server development. PRs should target this.
|
||||
|
||||
### Pull Request Guidelines
|
||||
|
||||
- **Keep Them Small**
|
||||
If you're fixing a bug, try to keep the changes to the bug fix only. If you're adding a feature, try to keep the changes to the feature only. This will make it easier to review and merge your changes.
|
||||
- **Perform a Self-Review**
|
||||
Before submitting your changes, review your own code. This will help you catch any mistakes you may have made.
|
||||
- **Remove Noise**
|
||||
Remove any unnecessary changes to white space, code style formatting, or some text change that has no impact related to the intention of the PR.
|
||||
- **Create a Meaningful Title**
|
||||
When creating a PR, make sure the title is meaningful and describes the changes you've made.
|
||||
- **Write Detailed Commit Messages**
|
||||
Bring out your table manners, speak the Queen's English and be on your best behaviour.
|
||||
|
||||
### Style Guide
|
||||
|
||||
TODO: style guidance
|
||||
Ensure that your code is automatically formatted whenever you save a file.
|
||||
|
||||
### Tests
|
||||
|
||||
We have a number of tests that are run automatically when you submit a pull request. You can run these tests locally by running The unit test sub-project. If you're adding a new feature or fixing a bug, please conceder adding tests to cover your changes so that we can ensure they don't break in the future.
|
||||
|
||||
## License
|
||||
|
||||
This project is licensed under the NCSA Open Source License. See the [LICENSE](LICENSE.md) file for details.
|
||||
@@ -1,4 +1,4 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="..\..\Build.props"/>
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
</Content>
|
||||
</ItemGroup>
|
||||
|
||||
<Target Name="PostBuildHashFile" AfterTargets="Build">
|
||||
<Target Name="PostBuildHashFile" AfterTargets="Build" Condition="'$(Configuration)' == 'Release'">
|
||||
<Exec Command="pwsh -NoProfile -ExecutionPolicy Bypass -File "$(ProjectDir)PostBuild.ps1"" />
|
||||
</Target>
|
||||
|
||||
|
||||
@@ -69,6 +69,12 @@ public class DatabaseImporter(
|
||||
|
||||
protected async Task LoadHashes()
|
||||
{
|
||||
// The checks hash file is only made in Release mode
|
||||
if (ProgramStatics.DEBUG())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
var checksFilePath = System.IO.Path.Combine(_sptDataPath, "checks.dat");
|
||||
|
||||
try
|
||||
@@ -140,6 +146,12 @@ public class DatabaseImporter(
|
||||
|
||||
protected async Task VerifyDatabase(string fileName)
|
||||
{
|
||||
// The checks hash file is only made in Release mode
|
||||
if (ProgramStatics.DEBUG())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
var relativePath = fileName.StartsWith(_sptDataPath, StringComparison.OrdinalIgnoreCase)
|
||||
? fileName.Substring(_sptDataPath.Length)
|
||||
: fileName;
|
||||
|
||||
@@ -38,10 +38,11 @@ You only need one of the above.
|
||||
### Initial Setup
|
||||
|
||||
1. Download and install the [.net 9.0 SDK](https://dotnet.microsoft.com/en-us/download/dotnet/9.0).
|
||||
2. Run `git clone https://github.com/sp-tarkov/server-csharp.git server` to clone the repository
|
||||
3. Run `git lfs pull` to download LFS files locally.
|
||||
4. Open the `project/server-csharp.sln` file in Visual Studio or Rider
|
||||
5. Run `Build > Build Solution (CTRL + SHIFT + B)` in the IDE
|
||||
2. Download and install [Powershell 7.5](https://learn.microsoft.com/en-us/powershell/scripting/install/installing-powershell-on-windows?view=powershell-7.5) as this is required for post build scripts
|
||||
3. Run `git clone https://github.com/sp-tarkov/server-csharp.git server` to clone the repository
|
||||
4. Run `git lfs pull` to download LFS files locally.
|
||||
5. Open the `project/server-csharp.sln` file in Visual Studio or Rider
|
||||
6. Run `Build > Build Solution (CTRL + SHIFT + B)` in the IDE
|
||||
|
||||
## Development
|
||||
|
||||
|
||||
Reference in New Issue
Block a user