Compare commits
11 Commits
Author | SHA1 | Date | |
---|---|---|---|
2d28ce7415 | |||
fd64c77aed | |||
aeaf755d08 | |||
667f52f33b | |||
![]() |
4c5751fccf | ||
![]() |
bd11bc223d | ||
![]() |
ccd04585c4 | ||
![]() |
88ad741f3b | ||
![]() |
29bfcced62 | ||
![]() |
5fac281f37 | ||
![]() |
6698359c08 |
58
.github/workflows/release.yaml
vendored
58
.github/workflows/release.yaml
vendored
@@ -23,7 +23,11 @@ jobs:
|
|||||||
|
|
||||||
- name: Git Version
|
- name: Git Version
|
||||||
id: version
|
id: version
|
||||||
uses: codacy/git-version@2.7.1
|
uses: paulhatch/semantic-version@v5.3.0
|
||||||
|
with:
|
||||||
|
tag_prefix: ''
|
||||||
|
major_pattern: 'breaking:'
|
||||||
|
minor_pattern: 'feature:'
|
||||||
|
|
||||||
build-nuget:
|
build-nuget:
|
||||||
name: Build and Publish Nuget
|
name: Build and Publish Nuget
|
||||||
@@ -37,6 +41,19 @@ jobs:
|
|||||||
name: Setup dotnet
|
name: Setup dotnet
|
||||||
with:
|
with:
|
||||||
dotnet-version: '8.0.x'
|
dotnet-version: '8.0.x'
|
||||||
|
|
||||||
|
- name: Intall mono
|
||||||
|
run: |
|
||||||
|
curl -fsSL https://download.mono-project.com/repo/xamarin.gpg | gpg --dearmor -o /usr/share/keyrings/mono-official-stable.gpg
|
||||||
|
echo "deb [signed-by=/usr/share/keyrings/mono-official-stable.gpg] https://download.mono-project.com/repo/ubuntu stable-focal main" > /etc/apt/sources.list.d/mono-official-stable.list
|
||||||
|
apt-get update
|
||||||
|
apt-get install -y --no-install-recommends apt-transport-https mono-complete
|
||||||
|
|
||||||
|
|
||||||
|
- uses: nuget/setup-nuget@v1
|
||||||
|
name: Setup nuget cli
|
||||||
|
with:
|
||||||
|
nuget-version: '5.x'
|
||||||
|
|
||||||
- name: Restore dependencies
|
- name: Restore dependencies
|
||||||
run: dotnet restore Torch.Server/Torch.Server.csproj --locked-mode
|
run: dotnet restore Torch.Server/Torch.Server.csproj --locked-mode
|
||||||
@@ -63,7 +80,7 @@ jobs:
|
|||||||
|
|
||||||
build:
|
build:
|
||||||
name: Build and Publish Package
|
name: Build and Publish Package
|
||||||
runs-on: windows-latest
|
runs-on: ubuntu-latest
|
||||||
needs: [get-version]
|
needs: [get-version]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@master
|
- uses: actions/checkout@master
|
||||||
@@ -75,43 +92,24 @@ jobs:
|
|||||||
dotnet-version: '8.0.x'
|
dotnet-version: '8.0.x'
|
||||||
|
|
||||||
- name: Restore dependencies
|
- name: Restore dependencies
|
||||||
run: dotnet restore Torch.Server/Torch.Server.csproj --locked-mode
|
run: dotnet restore Torch.Server/Torch.Server.csproj --locked-mode -r win-x64
|
||||||
|
|
||||||
- name: Build
|
|
||||||
run: dotnet build Torch.Server/Torch.Server.csproj --no-restore -c ${{ env.BUILD_CONFIGURATION }} -p:Version="${{ needs.get-version.outputs.version }}" -p:AssemblyVersion="${{ needs.get-version.outputs.version }}"
|
|
||||||
- name: Publish
|
- name: Publish
|
||||||
run: dotnet publish Torch.Server/Torch.Server.csproj --no-build --sc -c ${{ env.BUILD_CONFIGURATION }} -o ./publish
|
run: dotnet publish Torch.Server/Torch.Server.csproj --no-restore --sc -r win-x64 -c ${{ env.BUILD_CONFIGURATION }} -o ./publish -p:Version="${{ needs.get-version.outputs.version }}" -p:AssemblyVersion="${{ needs.get-version.outputs.version }}"
|
||||||
|
|
||||||
- uses: vimtor/action-zip@v1
|
- uses: vimtor/action-zip@v1
|
||||||
name: Zip Release
|
name: Zip Release
|
||||||
with:
|
with:
|
||||||
files: publish/
|
files: publish/
|
||||||
dest: release.zip
|
dest: torch-server.zip
|
||||||
|
|
||||||
- name: Create release
|
- name: Create Release
|
||||||
id: create_release
|
uses: akkuman/gitea-release-action@v1
|
||||||
uses: actions/create-release@v1
|
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
NODE_OPTIONS: '--experimental-fetch' # if nodejs < 18
|
||||||
with:
|
with:
|
||||||
tag_name: ${{ needs.get-version.outputs.version }}
|
tag_name: ${{ needs.get-version.outputs.version }}
|
||||||
release_name: Release v${{ needs.get-version.outputs.version }}
|
name: Release v${{ needs.get-version.outputs.version }}
|
||||||
body: ${{ steps.github_release.outputs.changelog }}
|
body: ${{ steps.github_release.outputs.changelog }}
|
||||||
draft: true
|
files: |-
|
||||||
prerelease: false
|
./torch-server.zip
|
||||||
|
|
||||||
- name: Upload release asset
|
|
||||||
uses: actions/upload-release-asset@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: release.zip
|
|
||||||
asset_name: torch-server.zip
|
|
||||||
asset_content_type: application/zip
|
|
||||||
|
|
||||||
- uses: eregon/publish-release@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
release_id: ${{ steps.create_release.outputs.id }}
|
|
@@ -1,9 +1,8 @@
|
|||||||
<Project>
|
<Project>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net7.0-windows</TargetFramework>
|
<TargetFramework>net8.0-windows</TargetFramework>
|
||||||
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
||||||
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
||||||
<EnableWindowsTargeting>true</EnableWindowsTargeting>
|
<EnableWindowsTargeting>true</EnableWindowsTargeting>
|
||||||
<RuntimeFrameworkVersion>7.0.4</RuntimeFrameworkVersion>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
@@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.0" />
|
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.0" />
|
||||||
<PackageReference Include="NLog" Version="5.2.7" />
|
<PackageReference Include="NLog" Version="5.2.8" />
|
||||||
<PackageReference Include="NuGet.Commands" Version="6.8.0" />
|
<PackageReference Include="NuGet.Commands" Version="6.8.0" />
|
||||||
<PackageReference Include="NuGet.DependencyResolver.Core" Version="6.8.0" />
|
<PackageReference Include="NuGet.DependencyResolver.Core" Version="6.8.0" />
|
||||||
<PackageReference Include="SemanticVersioning" Version="2.0.2" />
|
<PackageReference Include="SemanticVersioning" Version="2.0.2" />
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"version": 1,
|
"version": 1,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"net7.0-windows7.0": {
|
"net8.0-windows7.0": {
|
||||||
"Microsoft.Extensions.Configuration.Binder": {
|
"Microsoft.Extensions.Configuration.Binder": {
|
||||||
"type": "Direct",
|
"type": "Direct",
|
||||||
"requested": "[8.0.0, )",
|
"requested": "[8.0.0, )",
|
||||||
@@ -13,9 +13,9 @@
|
|||||||
},
|
},
|
||||||
"NLog": {
|
"NLog": {
|
||||||
"type": "Direct",
|
"type": "Direct",
|
||||||
"requested": "[5.2.7, )",
|
"requested": "[5.2.8, )",
|
||||||
"resolved": "5.2.7",
|
"resolved": "5.2.8",
|
||||||
"contentHash": "Ww/0b6V1NL8iqpFKtRKVQFFX03LoowNzYeNG6FpVzmhgCfLAkW0h/4lT3+V8mHfyvtHptNoV8Cz0YePLFRUaPA=="
|
"contentHash": "jAIELkWBs1CXFPp986KSGpDFQZHCFccO+LMbKBTTNm42KifaI1mYzFMFQQfuGmGMTrCx0TFPhDjHDE4cLAZWiQ=="
|
||||||
},
|
},
|
||||||
"NuGet.Commands": {
|
"NuGet.Commands": {
|
||||||
"type": "Direct",
|
"type": "Direct",
|
||||||
@@ -209,7 +209,7 @@
|
|||||||
"contentHash": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ=="
|
"contentHash": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ=="
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"net7.0-windows7.0/win-x64": {
|
"net8.0-windows7.0/win-x64": {
|
||||||
"System.Security.Cryptography.Pkcs": {
|
"System.Security.Cryptography.Pkcs": {
|
||||||
"type": "Transitive",
|
"type": "Transitive",
|
||||||
"resolved": "6.0.4",
|
"resolved": "6.0.4",
|
||||||
|
@@ -14,8 +14,8 @@
|
|||||||
<!-- <Import Project="$(SolutionDir)\TransformOnBuild.targets" /> -->
|
<!-- <Import Project="$(SolutionDir)\TransformOnBuild.targets" /> -->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
|
||||||
<PackageReference Include="NLog" Version="5.2.7" />
|
<PackageReference Include="NLog" Version="5.2.8" />
|
||||||
<PackageReference Include="xunit" Version="2.6.2" />
|
<PackageReference Include="xunit" Version="2.6.5" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Torch.API\Torch.API.csproj" />
|
<ProjectReference Include="..\Torch.API\Torch.API.csproj" />
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"version": 1,
|
"version": 1,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"net7.0-windows7.0": {
|
"net8.0-windows7.0": {
|
||||||
"Microsoft.NET.Test.Sdk": {
|
"Microsoft.NET.Test.Sdk": {
|
||||||
"type": "Direct",
|
"type": "Direct",
|
||||||
"requested": "[17.8.0, )",
|
"requested": "[17.8.0, )",
|
||||||
@@ -14,19 +14,19 @@
|
|||||||
},
|
},
|
||||||
"NLog": {
|
"NLog": {
|
||||||
"type": "Direct",
|
"type": "Direct",
|
||||||
"requested": "[5.2.7, )",
|
"requested": "[5.2.8, )",
|
||||||
"resolved": "5.2.7",
|
"resolved": "5.2.8",
|
||||||
"contentHash": "Ww/0b6V1NL8iqpFKtRKVQFFX03LoowNzYeNG6FpVzmhgCfLAkW0h/4lT3+V8mHfyvtHptNoV8Cz0YePLFRUaPA=="
|
"contentHash": "jAIELkWBs1CXFPp986KSGpDFQZHCFccO+LMbKBTTNm42KifaI1mYzFMFQQfuGmGMTrCx0TFPhDjHDE4cLAZWiQ=="
|
||||||
},
|
},
|
||||||
"xunit": {
|
"xunit": {
|
||||||
"type": "Direct",
|
"type": "Direct",
|
||||||
"requested": "[2.6.2, )",
|
"requested": "[2.6.5, )",
|
||||||
"resolved": "2.6.2",
|
"resolved": "2.6.5",
|
||||||
"contentHash": "sErOyzTZBfgeLcdu5y3CkhCirZikCe9GwEv56jbQRjSa4FyI2tIHjfBRvlWqg7M78bfAGajrreH0IHnxrUOpVA==",
|
"contentHash": "iPSL63kw21BdSsdA79bvbVNvyn17DWI4D6VbgNxYtvzgViKrmbRLr8sWPxSlc4AvnofEuFfAi/rrLSzSRomwCg==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"xunit.analyzers": "1.6.0",
|
"xunit.analyzers": "1.9.0",
|
||||||
"xunit.assert": "2.6.2",
|
"xunit.assert": "2.6.5",
|
||||||
"xunit.core": "[2.6.2]"
|
"xunit.core": "[2.6.5]"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"AutoCompleteTextBox": {
|
"AutoCompleteTextBox": {
|
||||||
@@ -1476,27 +1476,27 @@
|
|||||||
},
|
},
|
||||||
"xunit.analyzers": {
|
"xunit.analyzers": {
|
||||||
"type": "Transitive",
|
"type": "Transitive",
|
||||||
"resolved": "1.6.0",
|
"resolved": "1.9.0",
|
||||||
"contentHash": "b/Wbrqr/bFvcjqAbYdJyCCvjz+PjjKMnoK/K6sbcCBu94pqAkB2vBAHFo87wNq2awsLPAuq5MA7q0XexyQ3mJQ=="
|
"contentHash": "02ucFDty6Y9BBT5c35YueFfbM3uEzeFdRvlNtAPhZVUkGUlhl3jsV2XesgTj986/PZXIjpVoc2D8ee6p1ha/Fw=="
|
||||||
},
|
},
|
||||||
"xunit.assert": {
|
"xunit.assert": {
|
||||||
"type": "Transitive",
|
"type": "Transitive",
|
||||||
"resolved": "2.6.2",
|
"resolved": "2.6.5",
|
||||||
"contentHash": "JOj2+zWS08M59bCk3MkZFcKj2Izb2zwkHSPIKJLvnZYLR2Nw6HifjvBCpa8XhMF3mxDuGwZ0+ncmlhE9WoEaZw=="
|
"contentHash": "gb5uv7vjBFz7nhEa6aXK5sVJwsG/88xf8DN5wqK0ejCDsDybqICyNJIj+eoD43xbmdPZryNDPpeWDCfiKI/bnA=="
|
||||||
},
|
},
|
||||||
"xunit.core": {
|
"xunit.core": {
|
||||||
"type": "Transitive",
|
"type": "Transitive",
|
||||||
"resolved": "2.6.2",
|
"resolved": "2.6.5",
|
||||||
"contentHash": "LxJ06D9uTDyvHY52+Lym2TUlq3ObgAKSTuzM9gniau8qI1fd/CPag4PFaGs0RJfunUJtYHg9+XrS5EcW/5dxGA==",
|
"contentHash": "hpdMnSNlx4ejaxpaIAFaqHt4q9ZCnzZLnURrSa5CzYXxHhIQbV8/0yXLjRdublhreonGXVMmsQ1KHlS9WbfpCw==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"xunit.extensibility.core": "[2.6.2]",
|
"xunit.extensibility.core": "[2.6.5]",
|
||||||
"xunit.extensibility.execution": "[2.6.2]"
|
"xunit.extensibility.execution": "[2.6.5]"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"xunit.extensibility.core": {
|
"xunit.extensibility.core": {
|
||||||
"type": "Transitive",
|
"type": "Transitive",
|
||||||
"resolved": "2.6.2",
|
"resolved": "2.6.5",
|
||||||
"contentHash": "T8CmshbP1EeaDibLwgU/aEe53zrW0+x+mEz5aKxexS5vVyj1UwgDUjcTK/+prMF/9KgMHkgx1vIe7wv58wO6RQ==",
|
"contentHash": "dSGRkVxzH27XaL83+Z9kNPllqgsmsiPayXw+0weCGsrZQxfSCBNNkSb9nYUpkVoEBCUviXOmo1tfApqhgqTjog==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"NETStandard.Library": "1.6.1",
|
"NETStandard.Library": "1.6.1",
|
||||||
"xunit.abstractions": "2.0.3"
|
"xunit.abstractions": "2.0.3"
|
||||||
@@ -1504,11 +1504,11 @@
|
|||||||
},
|
},
|
||||||
"xunit.extensibility.execution": {
|
"xunit.extensibility.execution": {
|
||||||
"type": "Transitive",
|
"type": "Transitive",
|
||||||
"resolved": "2.6.2",
|
"resolved": "2.6.5",
|
||||||
"contentHash": "kKo7XqyLF8blXGqQHlqKQ+AzST42kpB7oG81Km/kFEzWVfeDMgaEquOLAr/ZiR4tnkUbbWYrY6CJPTavFqGn6Q==",
|
"contentHash": "jUMr88e0lSqDq8Vut0XVqx7plFg91QsKW/rX6gaVnJL6Z19LmNSDmyqd7cg6HQGfboAmyoFZyydA4Kcgouu1BA==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"NETStandard.Library": "1.6.1",
|
"NETStandard.Library": "1.6.1",
|
||||||
"xunit.extensibility.core": "[2.6.2]"
|
"xunit.extensibility.core": "[2.6.5]"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"torch": {
|
"torch": {
|
||||||
@@ -1520,7 +1520,7 @@
|
|||||||
"Microsoft.CodeAnalysis.CSharp": "[4.8.0, )",
|
"Microsoft.CodeAnalysis.CSharp": "[4.8.0, )",
|
||||||
"Microsoft.CodeAnalysis.Common": "[4.8.0, )",
|
"Microsoft.CodeAnalysis.Common": "[4.8.0, )",
|
||||||
"MonoMod.RuntimeDetour": "[25.1.0-prerelease.1, )",
|
"MonoMod.RuntimeDetour": "[25.1.0-prerelease.1, )",
|
||||||
"NLog": "[5.2.7, )",
|
"NLog": "[5.2.8, )",
|
||||||
"System.ComponentModel.Annotations": "[5.0.0, )",
|
"System.ComponentModel.Annotations": "[5.0.0, )",
|
||||||
"Torch.API": "[1.0.0, )",
|
"Torch.API": "[1.0.0, )",
|
||||||
"Torch.SixLabors.ImageSharp": "[1.0.0-beta6, )",
|
"Torch.SixLabors.ImageSharp": "[1.0.0-beta6, )",
|
||||||
@@ -1531,7 +1531,7 @@
|
|||||||
"type": "Project",
|
"type": "Project",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.Extensions.Configuration.Binder": "[8.0.0, )",
|
"Microsoft.Extensions.Configuration.Binder": "[8.0.0, )",
|
||||||
"NLog": "[5.2.7, )",
|
"NLog": "[5.2.8, )",
|
||||||
"NuGet.Commands": "[6.8.0, )",
|
"NuGet.Commands": "[6.8.0, )",
|
||||||
"NuGet.DependencyResolver.Core": "[6.8.0, )",
|
"NuGet.DependencyResolver.Core": "[6.8.0, )",
|
||||||
"SemanticVersioning": "[2.0.2, )",
|
"SemanticVersioning": "[2.0.2, )",
|
||||||
@@ -1553,7 +1553,7 @@
|
|||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables": "[8.0.0, )",
|
"Microsoft.Extensions.Configuration.EnvironmentVariables": "[8.0.0, )",
|
||||||
"Microsoft.Extensions.Configuration.Xml": "[8.0.0, )",
|
"Microsoft.Extensions.Configuration.Xml": "[8.0.0, )",
|
||||||
"Microsoft.Extensions.Logging": "[8.0.0, )",
|
"Microsoft.Extensions.Logging": "[8.0.0, )",
|
||||||
"NLog": "[5.2.7, )",
|
"NLog": "[5.2.8, )",
|
||||||
"System.ComponentModel.Annotations": "[5.0.0, )",
|
"System.ComponentModel.Annotations": "[5.0.0, )",
|
||||||
"System.Management": "[8.0.0, )",
|
"System.Management": "[8.0.0, )",
|
||||||
"Torch": "[1.0.0, )",
|
"Torch": "[1.0.0, )",
|
||||||
@@ -1565,14 +1565,14 @@
|
|||||||
"type": "Project",
|
"type": "Project",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NET.Test.Sdk": "[17.8.0, )",
|
"Microsoft.NET.Test.Sdk": "[17.8.0, )",
|
||||||
"NLog": "[5.2.7, )",
|
"NLog": "[5.2.8, )",
|
||||||
"Torch": "[1.0.0, )",
|
"Torch": "[1.0.0, )",
|
||||||
"Torch.API": "[1.0.0, )",
|
"Torch.API": "[1.0.0, )",
|
||||||
"xunit": "[2.6.2, )"
|
"xunit": "[2.6.5, )"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"net7.0-windows7.0/win-x64": {
|
"net8.0-windows7.0/win-x64": {
|
||||||
"Microsoft.Win32.Primitives": {
|
"Microsoft.Win32.Primitives": {
|
||||||
"type": "Transitive",
|
"type": "Transitive",
|
||||||
"resolved": "4.3.0",
|
"resolved": "4.3.0",
|
||||||
|
@@ -7,6 +7,7 @@
|
|||||||
<Copyright>Copyright © Torch API 2017</Copyright>
|
<Copyright>Copyright © Torch API 2017</Copyright>
|
||||||
<OutputPath>..\bin\$(Platform)\$(Configuration)\</OutputPath>
|
<OutputPath>..\bin\$(Platform)\$(Configuration)\</OutputPath>
|
||||||
<UseWPF>true</UseWPF>
|
<UseWPF>true</UseWPF>
|
||||||
|
<UseWindowsForms>true</UseWindowsForms>
|
||||||
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
|
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
|
||||||
<NeutralLanguage>en</NeutralLanguage>
|
<NeutralLanguage>en</NeutralLanguage>
|
||||||
<TieredPGO>true</TieredPGO>
|
<TieredPGO>true</TieredPGO>
|
||||||
@@ -38,7 +39,7 @@
|
|||||||
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="8.0.0" />
|
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="8.0.0" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Configuration.Xml" Version="8.0.0" />
|
<PackageReference Include="Microsoft.Extensions.Configuration.Xml" Version="8.0.0" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
|
||||||
<PackageReference Include="NLog" Version="5.2.7" />
|
<PackageReference Include="NLog" Version="5.2.8" />
|
||||||
<PackageReference Include="PropertyChanged.Fody" Version="4.1.0" PrivateAssets="all" />
|
<PackageReference Include="PropertyChanged.Fody" Version="4.1.0" PrivateAssets="all" />
|
||||||
<PackageReference Include="Steamworks.NET" Version="20.1.0">
|
<PackageReference Include="Steamworks.NET" Version="20.1.0">
|
||||||
<PrivateAssets>all</PrivateAssets>
|
<PrivateAssets>all</PrivateAssets>
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"version": 1,
|
"version": 1,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"net7.0-windows7.0": {
|
"net8.0-windows7.0": {
|
||||||
"AutoCompleteTextBox": {
|
"AutoCompleteTextBox": {
|
||||||
"type": "Direct",
|
"type": "Direct",
|
||||||
"requested": "[1.7.2, )",
|
"requested": "[1.7.2, )",
|
||||||
@@ -109,9 +109,9 @@
|
|||||||
},
|
},
|
||||||
"NLog": {
|
"NLog": {
|
||||||
"type": "Direct",
|
"type": "Direct",
|
||||||
"requested": "[5.2.7, )",
|
"requested": "[5.2.8, )",
|
||||||
"resolved": "5.2.7",
|
"resolved": "5.2.8",
|
||||||
"contentHash": "Ww/0b6V1NL8iqpFKtRKVQFFX03LoowNzYeNG6FpVzmhgCfLAkW0h/4lT3+V8mHfyvtHptNoV8Cz0YePLFRUaPA=="
|
"contentHash": "jAIELkWBs1CXFPp986KSGpDFQZHCFccO+LMbKBTTNm42KifaI1mYzFMFQQfuGmGMTrCx0TFPhDjHDE4cLAZWiQ=="
|
||||||
},
|
},
|
||||||
"nulastudio.NetCoreBeauty": {
|
"nulastudio.NetCoreBeauty": {
|
||||||
"type": "Direct",
|
"type": "Direct",
|
||||||
@@ -579,7 +579,7 @@
|
|||||||
"Microsoft.CodeAnalysis.CSharp": "[4.8.0, )",
|
"Microsoft.CodeAnalysis.CSharp": "[4.8.0, )",
|
||||||
"Microsoft.CodeAnalysis.Common": "[4.8.0, )",
|
"Microsoft.CodeAnalysis.Common": "[4.8.0, )",
|
||||||
"MonoMod.RuntimeDetour": "[25.1.0-prerelease.1, )",
|
"MonoMod.RuntimeDetour": "[25.1.0-prerelease.1, )",
|
||||||
"NLog": "[5.2.7, )",
|
"NLog": "[5.2.8, )",
|
||||||
"System.ComponentModel.Annotations": "[5.0.0, )",
|
"System.ComponentModel.Annotations": "[5.0.0, )",
|
||||||
"Torch.API": "[1.0.0, )",
|
"Torch.API": "[1.0.0, )",
|
||||||
"Torch.SixLabors.ImageSharp": "[1.0.0-beta6, )",
|
"Torch.SixLabors.ImageSharp": "[1.0.0-beta6, )",
|
||||||
@@ -590,7 +590,7 @@
|
|||||||
"type": "Project",
|
"type": "Project",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.Extensions.Configuration.Binder": "[8.0.0, )",
|
"Microsoft.Extensions.Configuration.Binder": "[8.0.0, )",
|
||||||
"NLog": "[5.2.7, )",
|
"NLog": "[5.2.8, )",
|
||||||
"NuGet.Commands": "[6.8.0, )",
|
"NuGet.Commands": "[6.8.0, )",
|
||||||
"NuGet.DependencyResolver.Core": "[6.8.0, )",
|
"NuGet.DependencyResolver.Core": "[6.8.0, )",
|
||||||
"SemanticVersioning": "[2.0.2, )",
|
"SemanticVersioning": "[2.0.2, )",
|
||||||
@@ -599,7 +599,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"net7.0-windows7.0/win-x64": {
|
"net8.0-windows7.0/win-x64": {
|
||||||
"Steamworks.NET": {
|
"Steamworks.NET": {
|
||||||
"type": "Direct",
|
"type": "Direct",
|
||||||
"requested": "[20.1.0, )",
|
"requested": "[20.1.0, )",
|
||||||
|
@@ -14,8 +14,8 @@
|
|||||||
<!-- <Import Project="$(SolutionDir)\TransformOnBuild.targets" /> -->
|
<!-- <Import Project="$(SolutionDir)\TransformOnBuild.targets" /> -->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
|
||||||
<PackageReference Include="NLog" Version="5.2.7" />
|
<PackageReference Include="NLog" Version="5.2.8" />
|
||||||
<PackageReference Include="xunit" Version="2.6.2" />
|
<PackageReference Include="xunit" Version="2.6.5" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Torch.API\Torch.API.csproj" />
|
<ProjectReference Include="..\Torch.API\Torch.API.csproj" />
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"version": 1,
|
"version": 1,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"net7.0-windows7.0": {
|
"net8.0-windows7.0": {
|
||||||
"Microsoft.NET.Test.Sdk": {
|
"Microsoft.NET.Test.Sdk": {
|
||||||
"type": "Direct",
|
"type": "Direct",
|
||||||
"requested": "[17.8.0, )",
|
"requested": "[17.8.0, )",
|
||||||
@@ -14,19 +14,19 @@
|
|||||||
},
|
},
|
||||||
"NLog": {
|
"NLog": {
|
||||||
"type": "Direct",
|
"type": "Direct",
|
||||||
"requested": "[5.2.7, )",
|
"requested": "[5.2.8, )",
|
||||||
"resolved": "5.2.7",
|
"resolved": "5.2.8",
|
||||||
"contentHash": "Ww/0b6V1NL8iqpFKtRKVQFFX03LoowNzYeNG6FpVzmhgCfLAkW0h/4lT3+V8mHfyvtHptNoV8Cz0YePLFRUaPA=="
|
"contentHash": "jAIELkWBs1CXFPp986KSGpDFQZHCFccO+LMbKBTTNm42KifaI1mYzFMFQQfuGmGMTrCx0TFPhDjHDE4cLAZWiQ=="
|
||||||
},
|
},
|
||||||
"xunit": {
|
"xunit": {
|
||||||
"type": "Direct",
|
"type": "Direct",
|
||||||
"requested": "[2.6.2, )",
|
"requested": "[2.6.5, )",
|
||||||
"resolved": "2.6.2",
|
"resolved": "2.6.5",
|
||||||
"contentHash": "sErOyzTZBfgeLcdu5y3CkhCirZikCe9GwEv56jbQRjSa4FyI2tIHjfBRvlWqg7M78bfAGajrreH0IHnxrUOpVA==",
|
"contentHash": "iPSL63kw21BdSsdA79bvbVNvyn17DWI4D6VbgNxYtvzgViKrmbRLr8sWPxSlc4AvnofEuFfAi/rrLSzSRomwCg==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"xunit.analyzers": "1.6.0",
|
"xunit.analyzers": "1.9.0",
|
||||||
"xunit.assert": "2.6.2",
|
"xunit.assert": "2.6.5",
|
||||||
"xunit.core": "[2.6.2]"
|
"xunit.core": "[2.6.5]"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ControlzEx": {
|
"ControlzEx": {
|
||||||
@@ -1298,27 +1298,27 @@
|
|||||||
},
|
},
|
||||||
"xunit.analyzers": {
|
"xunit.analyzers": {
|
||||||
"type": "Transitive",
|
"type": "Transitive",
|
||||||
"resolved": "1.6.0",
|
"resolved": "1.9.0",
|
||||||
"contentHash": "b/Wbrqr/bFvcjqAbYdJyCCvjz+PjjKMnoK/K6sbcCBu94pqAkB2vBAHFo87wNq2awsLPAuq5MA7q0XexyQ3mJQ=="
|
"contentHash": "02ucFDty6Y9BBT5c35YueFfbM3uEzeFdRvlNtAPhZVUkGUlhl3jsV2XesgTj986/PZXIjpVoc2D8ee6p1ha/Fw=="
|
||||||
},
|
},
|
||||||
"xunit.assert": {
|
"xunit.assert": {
|
||||||
"type": "Transitive",
|
"type": "Transitive",
|
||||||
"resolved": "2.6.2",
|
"resolved": "2.6.5",
|
||||||
"contentHash": "JOj2+zWS08M59bCk3MkZFcKj2Izb2zwkHSPIKJLvnZYLR2Nw6HifjvBCpa8XhMF3mxDuGwZ0+ncmlhE9WoEaZw=="
|
"contentHash": "gb5uv7vjBFz7nhEa6aXK5sVJwsG/88xf8DN5wqK0ejCDsDybqICyNJIj+eoD43xbmdPZryNDPpeWDCfiKI/bnA=="
|
||||||
},
|
},
|
||||||
"xunit.core": {
|
"xunit.core": {
|
||||||
"type": "Transitive",
|
"type": "Transitive",
|
||||||
"resolved": "2.6.2",
|
"resolved": "2.6.5",
|
||||||
"contentHash": "LxJ06D9uTDyvHY52+Lym2TUlq3ObgAKSTuzM9gniau8qI1fd/CPag4PFaGs0RJfunUJtYHg9+XrS5EcW/5dxGA==",
|
"contentHash": "hpdMnSNlx4ejaxpaIAFaqHt4q9ZCnzZLnURrSa5CzYXxHhIQbV8/0yXLjRdublhreonGXVMmsQ1KHlS9WbfpCw==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"xunit.extensibility.core": "[2.6.2]",
|
"xunit.extensibility.core": "[2.6.5]",
|
||||||
"xunit.extensibility.execution": "[2.6.2]"
|
"xunit.extensibility.execution": "[2.6.5]"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"xunit.extensibility.core": {
|
"xunit.extensibility.core": {
|
||||||
"type": "Transitive",
|
"type": "Transitive",
|
||||||
"resolved": "2.6.2",
|
"resolved": "2.6.5",
|
||||||
"contentHash": "T8CmshbP1EeaDibLwgU/aEe53zrW0+x+mEz5aKxexS5vVyj1UwgDUjcTK/+prMF/9KgMHkgx1vIe7wv58wO6RQ==",
|
"contentHash": "dSGRkVxzH27XaL83+Z9kNPllqgsmsiPayXw+0weCGsrZQxfSCBNNkSb9nYUpkVoEBCUviXOmo1tfApqhgqTjog==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"NETStandard.Library": "1.6.1",
|
"NETStandard.Library": "1.6.1",
|
||||||
"xunit.abstractions": "2.0.3"
|
"xunit.abstractions": "2.0.3"
|
||||||
@@ -1326,11 +1326,11 @@
|
|||||||
},
|
},
|
||||||
"xunit.extensibility.execution": {
|
"xunit.extensibility.execution": {
|
||||||
"type": "Transitive",
|
"type": "Transitive",
|
||||||
"resolved": "2.6.2",
|
"resolved": "2.6.5",
|
||||||
"contentHash": "kKo7XqyLF8blXGqQHlqKQ+AzST42kpB7oG81Km/kFEzWVfeDMgaEquOLAr/ZiR4tnkUbbWYrY6CJPTavFqGn6Q==",
|
"contentHash": "jUMr88e0lSqDq8Vut0XVqx7plFg91QsKW/rX6gaVnJL6Z19LmNSDmyqd7cg6HQGfboAmyoFZyydA4Kcgouu1BA==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"NETStandard.Library": "1.6.1",
|
"NETStandard.Library": "1.6.1",
|
||||||
"xunit.extensibility.core": "[2.6.2]"
|
"xunit.extensibility.core": "[2.6.5]"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"torch": {
|
"torch": {
|
||||||
@@ -1342,7 +1342,7 @@
|
|||||||
"Microsoft.CodeAnalysis.CSharp": "[4.8.0, )",
|
"Microsoft.CodeAnalysis.CSharp": "[4.8.0, )",
|
||||||
"Microsoft.CodeAnalysis.Common": "[4.8.0, )",
|
"Microsoft.CodeAnalysis.Common": "[4.8.0, )",
|
||||||
"MonoMod.RuntimeDetour": "[25.1.0-prerelease.1, )",
|
"MonoMod.RuntimeDetour": "[25.1.0-prerelease.1, )",
|
||||||
"NLog": "[5.2.7, )",
|
"NLog": "[5.2.8, )",
|
||||||
"System.ComponentModel.Annotations": "[5.0.0, )",
|
"System.ComponentModel.Annotations": "[5.0.0, )",
|
||||||
"Torch.API": "[1.0.0, )",
|
"Torch.API": "[1.0.0, )",
|
||||||
"Torch.SixLabors.ImageSharp": "[1.0.0-beta6, )",
|
"Torch.SixLabors.ImageSharp": "[1.0.0-beta6, )",
|
||||||
@@ -1353,7 +1353,7 @@
|
|||||||
"type": "Project",
|
"type": "Project",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.Extensions.Configuration.Binder": "[8.0.0, )",
|
"Microsoft.Extensions.Configuration.Binder": "[8.0.0, )",
|
||||||
"NLog": "[5.2.7, )",
|
"NLog": "[5.2.8, )",
|
||||||
"NuGet.Commands": "[6.8.0, )",
|
"NuGet.Commands": "[6.8.0, )",
|
||||||
"NuGet.DependencyResolver.Core": "[6.8.0, )",
|
"NuGet.DependencyResolver.Core": "[6.8.0, )",
|
||||||
"SemanticVersioning": "[2.0.2, )",
|
"SemanticVersioning": "[2.0.2, )",
|
||||||
@@ -1362,7 +1362,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"net7.0-windows7.0/win-x64": {
|
"net8.0-windows7.0/win-x64": {
|
||||||
"Microsoft.Win32.Primitives": {
|
"Microsoft.Win32.Primitives": {
|
||||||
"type": "Transitive",
|
"type": "Transitive",
|
||||||
"resolved": "4.3.0",
|
"resolved": "4.3.0",
|
||||||
|
@@ -22,7 +22,7 @@
|
|||||||
<PackageReference Include="MahApps.Metro" Version="2.4.10" />
|
<PackageReference Include="MahApps.Metro" Version="2.4.10" />
|
||||||
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.8.0" />
|
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.8.0" />
|
||||||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.8.0" />
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.8.0" />
|
||||||
<PackageReference Include="NLog" Version="5.2.7" />
|
<PackageReference Include="NLog" Version="5.2.8" />
|
||||||
<PackageReference Include="PropertyChanged.Fody" Version="4.1.0" PrivateAssets="all" />
|
<PackageReference Include="PropertyChanged.Fody" Version="4.1.0" PrivateAssets="all" />
|
||||||
<PackageReference Include="protobuf-net" Version="3.2.30" />
|
<PackageReference Include="protobuf-net" Version="3.2.30" />
|
||||||
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
|
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"version": 1,
|
"version": 1,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"net7.0-windows7.0": {
|
"net8.0-windows7.0": {
|
||||||
"ControlzEx": {
|
"ControlzEx": {
|
||||||
"type": "Direct",
|
"type": "Direct",
|
||||||
"requested": "[5.0.2, )",
|
"requested": "[5.0.2, )",
|
||||||
@@ -75,9 +75,9 @@
|
|||||||
},
|
},
|
||||||
"NLog": {
|
"NLog": {
|
||||||
"type": "Direct",
|
"type": "Direct",
|
||||||
"requested": "[5.2.7, )",
|
"requested": "[5.2.8, )",
|
||||||
"resolved": "5.2.7",
|
"resolved": "5.2.8",
|
||||||
"contentHash": "Ww/0b6V1NL8iqpFKtRKVQFFX03LoowNzYeNG6FpVzmhgCfLAkW0h/4lT3+V8mHfyvtHptNoV8Cz0YePLFRUaPA=="
|
"contentHash": "jAIELkWBs1CXFPp986KSGpDFQZHCFccO+LMbKBTTNm42KifaI1mYzFMFQQfuGmGMTrCx0TFPhDjHDE4cLAZWiQ=="
|
||||||
},
|
},
|
||||||
"PropertyChanged.Fody": {
|
"PropertyChanged.Fody": {
|
||||||
"type": "Direct",
|
"type": "Direct",
|
||||||
@@ -394,7 +394,7 @@
|
|||||||
"type": "Project",
|
"type": "Project",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.Extensions.Configuration.Binder": "[8.0.0, )",
|
"Microsoft.Extensions.Configuration.Binder": "[8.0.0, )",
|
||||||
"NLog": "[5.2.7, )",
|
"NLog": "[5.2.8, )",
|
||||||
"NuGet.Commands": "[6.8.0, )",
|
"NuGet.Commands": "[6.8.0, )",
|
||||||
"NuGet.DependencyResolver.Core": "[6.8.0, )",
|
"NuGet.DependencyResolver.Core": "[6.8.0, )",
|
||||||
"SemanticVersioning": "[2.0.2, )",
|
"SemanticVersioning": "[2.0.2, )",
|
||||||
@@ -403,7 +403,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"net7.0-windows7.0/win-x64": {
|
"net8.0-windows7.0/win-x64": {
|
||||||
"System.Security.Cryptography.Pkcs": {
|
"System.Security.Cryptography.Pkcs": {
|
||||||
"type": "Transitive",
|
"type": "Transitive",
|
||||||
"resolved": "6.0.4",
|
"resolved": "6.0.4",
|
||||||
|
Reference in New Issue
Block a user