Version bump to 1.0.1
This commit is contained in:
parent
dcc10e3b7b
commit
763e462739
@ -17,7 +17,7 @@
|
||||
<PropertyGroup>
|
||||
<ContainerImageName>ActiveAllocator</ContainerImageName>
|
||||
<PublishProfile>DefaultContainer</PublishProfile>
|
||||
<ContainerImageTags>1.0.0;latest</ContainerImageTags>
|
||||
<ContainerImageTags>1.0.1;latest</ContainerImageTags>
|
||||
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
|
||||
</PropertyGroup>
|
||||
|
||||
|
@ -16,7 +16,7 @@ public interface IVersionService
|
||||
|
||||
public class VersionService : IVersionService
|
||||
{
|
||||
const string APP_VERSION = "1.0.0";
|
||||
const string APP_VERSION = "1.0.1";
|
||||
|
||||
ILogger<VersionService> _logger;
|
||||
|
||||
|
@ -6,14 +6,13 @@ public class AccountServiceTests
|
||||
public void PassingTest()
|
||||
{
|
||||
// Arrange
|
||||
int a = 2;
|
||||
int b = 2;
|
||||
int expected = 4;
|
||||
|
||||
// Act
|
||||
int result = Add(2, 2);
|
||||
int actual = Add(2, 2);
|
||||
|
||||
// Assert
|
||||
Assert.Equal(4, result);
|
||||
Assert.Equal(expected, actual);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
|
Loading…
x
Reference in New Issue
Block a user