diff --git a/sample/KerberosDemo/manifest.yml b/sample/KerberosDemo/manifest.yml index 982327f..f128901 100644 --- a/sample/KerberosDemo/manifest.yml +++ b/sample/KerberosDemo/manifest.yml @@ -5,10 +5,10 @@ applications: memory: 512M health-check-type: none buildpacks: - - https://github.com/macsux/kerberos-buildpack/releases/download/v1.0.7/KerberosBuildpack-linux-x64-v1.0.7.zip + - https://github.com/macsux/kerberos-buildpack/releases/download/v1.0.9/KerberosBuildpack-linux-x64-v1.0.9.zip - dotnet_core_buildpack env: KRB5_KDC: dc1.macsux.com KRB_SERVICE_ACCOUNT: iwaclient@macsux.com KRB_PASSWORD: P@ssw0rd - ConnectionStrings__SqlServer: Server=ad.almirex.com;Database=master;Trusted_Connection=True;TrustServerCertificate=True + ConnectionStrings__SqlServer: Server=dc1.macsux.com;Database=master;Trusted_Connection=True;TrustServerCertificate=True diff --git a/src/Directory.Build.props b/src/Directory.Build.props index 4fa411e..23714e9 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props @@ -8,5 +8,9 @@ + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + \ No newline at end of file diff --git a/src/KerberosBuildpack/KerberosBuildpack.cs b/src/KerberosBuildpack/KerberosBuildpack.cs index 4afe42a..c989184 100644 --- a/src/KerberosBuildpack/KerberosBuildpack.cs +++ b/src/KerberosBuildpack/KerberosBuildpack.cs @@ -23,7 +23,7 @@ public class KerberosBuildpack : SupplyBuildpack protected override void Apply(AbsolutePath buildPath, AbsolutePath cachePath, AbsolutePath depsPath, int index) { - Console.WriteLine("==== Installing Kerberos Buildpack ==== "); + Console.WriteLine($"==== Installing Kerberos Buildpack v{ThisAssembly.AssemblyFileVersion} ==== "); var myDependenciesDirectory = depsPath / index.ToString(); // store any runtime dependencies not belonging to the app in this directory var krb5Dir = buildPath / ".krb5"; diff --git a/version.json b/version.json index 54a0c59..81162e6 100644 --- a/version.json +++ b/version.json @@ -1,6 +1,9 @@ { "$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json", "version": "1.0", + "pathFilters": [ + ":!README.md" + ], "publicReleaseRefSpec": [ "^refs/heads/main$" ],