add readme and official build codeql (#413)

This commit is contained in:
David Justo 2024-08-01 08:17:56 -07:00 коммит произвёл GitHub
Родитель 8e10bc85b2
Коммит f34dea3a4a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
4 изменённых файлов: 38 добавлений и 0 удалений

Просмотреть файл

@ -8,6 +8,17 @@ trigger:
# CI only, does not trigger on PRs.
pr: none
schedules:
# Build nightly to catch any new CVEs and report SDL often.
# We are also required to generated CodeQL reports weekly, so this
# helps us meet that.
- cron: "0 0 * * *"
displayName: Nightly Build
branches:
include:
- main
always: true
resources:
repositories:
- repository: 1es

Просмотреть файл

@ -20,8 +20,17 @@
<PackageTags>Azure Task Durable Orchestration Workflow Activity Reliable EventHubs</PackageTags>
<PackageId>Microsoft.Azure.DurableTask.Netherite.AzureFunctions</PackageId>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>.\README.md</PackageReadmeFile>
</PropertyGroup>
<!-- Include the README.md at the root of the repo into the nupkg-->
<ItemGroup>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<!-- Version can be edited in common.props -->
<Import Project=".\..\common.props" />

Просмотреть файл

@ -20,8 +20,17 @@
<PackageId>Microsoft.Azure.DurableTask.Netherite</PackageId>
<PackageIcon>icon.png</PackageIcon>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<!-- Include the README.md at the root of the repo into the nupkg-->
<ItemGroup>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<!-- Version can be edited in common.props -->
<Import Project=".\..\common.props" />
<ItemGroup>

Просмотреть файл

@ -20,8 +20,17 @@
<PackageTags>Azure Task Durable Orchestration Workflow Activity Reliable EventHubs</PackageTags>
<PackageId>$(AssemblyName)</PackageId>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<!-- Include the README.md at the root of the repo into the nupkg-->
<ItemGroup>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<!-- Version can be edited in common.props -->
<Import Project=".\..\common.props" />