Skip to content

Commit d3d5ea4

Browse files
committed
try to improve workflow clone times by excluding tests folder, add copyright to build props
1 parent e25ea95 commit d3d5ea4

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,12 @@ jobs:
1010
platform: ['windows-latest']
1111

1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
with:
1515
submodules: true
16+
sparse-checkout: |
17+
'!Il2CppTests/*'
18+
'/*'
1619
1720
- name: Setup .NET SDK
1821
uses: actions/setup-dotnet@v4

Directory.Build.props

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
<Project>
22
<PropertyGroup>
33
<TargetFramework>net10.0</TargetFramework>
4-
<Version>2023.2</Version>
4+
<LangVersion>preview</LangVersion>
5+
<EnableSourceControlManagerQueries>true</EnableSourceControlManagerQueries>
6+
<Version>2023.1</Version>
57
<AssemblyVersion>$(Version).0.0</AssemblyVersion>
68
<FileVersion>$(AssemblyVersion)</FileVersion>
79
<Authors>Katy Coe, LukeFZ</Authors>
810
<Company>Noisy Cow Studios, LukeFZ</Company>
9-
<LangVersion>preview</LangVersion>
10-
<EnableSourceControlManagerQueries>true</EnableSourceControlManagerQueries>
11+
<Copyright>(c) 2023-2025 LukeFZ - https://github.com/LukeFZ, original (c) 2017-2021 Katy Coe - www.djkaty.com - www.github.com/djkaty</Copyright>
1112
</PropertyGroup>
1213
</Project>

Il2CppInspector.CLI/Il2CppInspector.CLI.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
99
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
1010
<Product>Il2CppInspectorRedux Command-Line Edition</Product>
11-
<Copyright>(c) 2023-2025 LukeFZ - https://github.com/LukeFZ, original (c) 2017-2021 Katy Coe - www.djkaty.com - www.github.com/djkaty</Copyright>
1211
<PackageId>Il2CppInspectorRedux.CLI</PackageId>
1312
<AssemblyName>Il2CppInspector</AssemblyName>
1413
</PropertyGroup>

0 commit comments

Comments
 (0)