Skip to content

Commit

Permalink
build(sln): release prep
Browse files Browse the repository at this point in the history
standardize devops pipeline
fix project assembly name
standardize docs
  • Loading branch information
seangwright committed Aug 22, 2023
1 parent ad4a0ee commit 362dd6e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 15 deletions.
13 changes: 2 additions & 11 deletions .azuredevops/pipelines/build-and-release.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: "$(Build.DefinitionName) #$(Build.BuildId)"

trigger:
- main
trigger: none # Manual Publish
pr: none # GitHub Actions handle PRs

parameters:
- name: AgentPoolName
Expand Down Expand Up @@ -30,9 +30,6 @@ stages:
demands:
- Agent.Name -equals ${{ parameters.AgentName }}

workspace:
clean: resources

variables:
- group: 14.0 Authenticode signature parameters

Expand Down Expand Up @@ -116,19 +113,13 @@ stages:
demands:
- Agent.Name -equals ${{ parameters.AgentName }}

workspace:
clean: resources

environment: integrations-release-nuget
strategy:
runOnce:
deploy:
steps:
- checkout: none

- download: current
displayName: Download Artifacts

- task: NuGetToolInstaller@1
displayName: Install latest nuget.exe
inputs:
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

[![CI: Build and Test](https://github.com/Kentico/xperience-by-kentico-contacts-importer/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/Kentico/xperience-by-kentico-contacts-importer/actions/workflows/ci.yml)

[![NuGet Package](https://img.shields.io/nuget/v/Kentico.Xperience.Contacts.Importer.svg)](https://www.nuget.org/packages/Kentico.Xperience.Contacts.Importer)

## About The Project

Enables bulk importing of Contacts into an Xperience by Kentico solution using a `.csv` file.
Expand Down Expand Up @@ -74,6 +76,10 @@ Notes:

## Contributing

For Contributing please see [`CONTRIBUTING.md`](https://github.com/Kentico/.github/blob/main/CONTRIBUTING.md) for more information and follow the [`CODE_OF_CONDUCT`](https://github.com/Kentico/.github/blob/main/CODE_OF_CONDUCT.md).

### Requirements

- .NET SDK >= 7.0.109

- <https://dotnet.microsoft.com/en-us/download/dotnet/7.0>
Expand All @@ -83,8 +89,6 @@ Notes:
- <https://nodejs.org/en/download>
- <https://github.com/coreybutler/nvm-windows>

For Contributing please see [`CONTRIBUTING.md`](https://github.com/Kentico/.github/blob/main/CONTRIBUTING.md) for more information and follow the [`CODE_OF_CONDUCT`](https://github.com/Kentico/.github/blob/main/CODE_OF_CONDUCT.md).

## License

Distributed under the MIT License. See [`LICENSE.md`](./LICENSE.md) for more information.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Product>Xperience by Kentico Contacts Importer</Product>
<Title>$(Product)</Title>
<PackageId>Kentico.Xperience.Contacts.Import</PackageId>
<PackageId>Kentico.Xperience.Contacts.Importer</PackageId>
<VersionSuffix Condition="$(Configuration) == 'Debug'">$([System.DateTime]::Now.ToString('yyMMddHHmm'))</VersionSuffix>
<PackageOutputDir Condition="$(Configuration) == 'Debug'">$(LOCAL_NUGET_REPO)\</PackageOutputDir>
<RootNamespace>Kentico.Xperience.Contacts.Importer</RootNamespace>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@
"System.Drawing.Common": "6.0.0"
}
},
"Kentico.Xperience.Contacts.Import": {
"kentico.xperience.contacts.importer": {
"type": "Project",
"dependencies": {
"CsvHelper": "[30.0.1, )",
Expand Down

0 comments on commit 362dd6e

Please sign in to comment.