Skip to content

Commit

Permalink
Merge pull request #25 from AinoraZ/AZ/feat/scheduled-builds
Browse files Browse the repository at this point in the history
Scheduled Builds
  • Loading branch information
AinoraZ committed Jun 22, 2023
2 parents 9d92437 + 184ae3a commit 27ff32e
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 17 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: '0 18 1 * *'

jobs:
build:
Expand Down
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"request": "launch",
"preLaunchTask": "build release",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/tests/Ainoraz.EFCore.IncludeBuilder.Benchmarks/bin/Release/net6.0/Ainoraz.EFCore.IncludeBuilder.Benchmarks.dll",
"program": "${workspaceFolder}/tests/Ainoraz.EFCore.IncludeBuilder.Benchmarks/bin/Release/net7.0/Ainoraz.EFCore.IncludeBuilder.Benchmarks.dll",
"args": [],
"cwd": "${workspaceFolder}/tests/Ainoraz.EFCore.IncludeBuilder.Benchmarks",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
Expand All @@ -23,4 +23,4 @@
"request": "attach"
}
]
}
}
5 changes: 3 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@
"Includable",
"prenum", // prerelease number
"Xunit"
]
}
],
"dotnet.defaultSolution": "Ainoraz.EFCore.IncludeBuilder.sln"
}
7 changes: 1 addition & 6 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,5 @@
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>

<PropertyGroup>
<EFCoreVersion>6.0.0</EFCoreVersion>
</PropertyGroup>
</Project>
</Project>
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>

<PropertyGroup Label="Source Link">
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
Expand All @@ -22,7 +26,7 @@

<ItemGroup Label="Package References">
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="all" Version="1.1.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="$(EFCoreVersion)" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
9 changes: 3 additions & 6 deletions tests/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,8 @@
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>

<PropertyGroup>
<EFCoreVersion>7.0.1</EFCoreVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="$(EFCoreVersion)" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.*" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.*" />
</ItemGroup>
</Project>
</Project>

0 comments on commit 27ff32e

Please sign in to comment.