This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Task("Run unit tests") | |
.Does(() => | |
{ | |
DotNetCoreTest("./YourProject.Tests/YourProject.Tests.csproj"); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app: | |
# Should be the same as backend.baseUrl when using the `app-backend` plugin | |
baseUrl: https://${CUSTOM_DOMAIN} | |
backend: | |
baseUrl: https://${CUSTOM_DOMAIN} | |
listen: | |
port: 80 | |
cors: | |
origin: https://${CUSTOM_DOMAIN} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish TechDocs Site | |
on: | |
push: | |
branches: [main] | |
jobs: | |
publish-techdocs-site: | |
runs-on: ubuntu-latest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build docker image | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This dockerfile builds an image for the backend package. | |
# It should be executed with the root of the repo as docker context. | |
# | |
# Before building this image, be sure to have run the following commands in the repo root: | |
# | |
# yarn install | |
# yarn tsc | |
# yarn build | |
# | |
# Once the commands have been run, you can build the image using `yarn build-image` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
terraform { | |
required_providers { | |
azurerm = { | |
source = "hashicorp/azurerm" | |
version = "2.89.0" | |
} | |
azuread = { | |
source = "hashicorp/azuread" | |
version = "2.12.0" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
terraform { | |
required_providers { | |
azurerm = { | |
source = "hashicorp/azurerm" | |
version = "2.89.0" | |
} | |
azuread = { | |
source = "hashicorp/azuread" | |
version = "2.12.0" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Testing testing |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using NUnit.Framework; | |
namespace Reproduce_resharper_error | |
{ | |
[TestFixture("Some param")] | |
[TestFixture("Some longer param")] | |
[TestFixture("Some slightly longer param")] | |
[TestFixture("1234567890123456789012345678901234567890")] // Add one more char here, and it disappears from the test runner window | |
[TestFixture("Some really, really, really, really, really, really, really, really long param")] | |
[TestFixture("Some really, really, really, really, really, really, really, really, really, really, really, really long param")] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class CustomFeedFieldMapping : IExternalSystemFieldMapping | |
{ | |
public Guid Guid | |
{ | |
get { return Guid.Parse("107FF759-53C3-48CD-9A96-0CE0C1B82235"); } | |
} | |
public string Code { get { return "Code"; } } | |
public IFeed FeedForMapping |
NewerOlder