Skip to content

Commit 7cc42e1

Browse files
Merge pull request #11 from TransactionProcessing/task/#10_ipaddressupdate
IP Address updates
2 parents 5732cfd + b4b17de commit 7cc42e1

5 files changed

Lines changed: 44 additions & 9 deletions

File tree

TestHosts/TestHosts/TestHosts.csproj

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.11" />
11-
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="5.0.11" />
12-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.11" />
13-
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.11.1" />
10+
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="5.0.13" />
11+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.12" />
12+
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="5.0.12" />
13+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.12" />
14+
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.9.10" />
1415
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.1.1" />
15-
<PackageReference Include="Shared" Version="1.0.14" />
16+
<PackageReference Include="Shared" Version="1.1.0" />
1617
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.1.0" />
17-
<PackageReference Include="NLog.Extensions.Logging" Version="1.6.1" />
18-
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="5.0.2" />
19-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.11">
18+
<PackageReference Include="NLog.Extensions.Logging" Version="1.7.4" />
19+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.12">
2020
<PrivateAssets>all</PrivateAssets>
2121
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2222
</PackageReference>
@@ -28,6 +28,12 @@
2828
</ItemGroup>
2929

3030
<ItemGroup>
31+
<Content Update="appsettings.preproduction.json">
32+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
33+
</Content>
34+
<Content Update="appsettings.staging.json">
35+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
36+
</Content>
3137
<Content Update="appsettings.json">
3238
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
3339
</Content>

TestHosts/TestHosts/appsettings.Development.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,8 @@
66
"Microsoft.Hosting.Lifetime": "Information"
77
}
88
},
9+
"ConnectionStrings": {
10+
"TestBankReadModel": "server=192.168.0.133,1433;user id=sa;password=sp1ttal;database=TestBankReadModel"
11+
},
912
"AllowedHosts": "*"
1013
}

TestHosts/TestHosts/appsettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
}
88
},
99
"ConnectionStrings": {
10-
"TestBankReadModel": "server=192.168.1.67,1433;user id=sa;password=sp1ttal;database=TestBankReadModel"
10+
"TestBankReadModel": "server=192.168.0.133,1433;user id=sa;password=sp1ttal;database=TestBankReadModel"
1111
},
1212
"AllowedHosts": "*"
1313
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"Logging": {
3+
"LogLevel": {
4+
"Default": "Information",
5+
"Microsoft": "Warning",
6+
"Microsoft.Hosting.Lifetime": "Information"
7+
}
8+
},
9+
"ConnectionStrings": {
10+
"TestBankReadModel": "server=192.168.0.134,1433;user id=sa;password=sp1ttal;database=TestBankReadModel"
11+
},
12+
"AllowedHosts": "*"
13+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"Logging": {
3+
"LogLevel": {
4+
"Default": "Information",
5+
"Microsoft": "Warning",
6+
"Microsoft.Hosting.Lifetime": "Information"
7+
}
8+
},
9+
"ConnectionStrings": {
10+
"TestBankReadModel": "server=192.168.0.133,1433;user id=sa;password=sp1ttal;database=TestBankReadModel"
11+
},
12+
"AllowedHosts": "*"
13+
}

0 commit comments

Comments
 (0)