Skip to content

Commit 4e4c0ac

Browse files
committed
Update to VS 2019
1 parent b618ad7 commit 4e4c0ac

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Drachenhorn.Core/Printing/Templates/CharacterSheet.cshtml

+5-5
Original file line numberDiff line numberDiff line change
@@ -165,13 +165,13 @@
165165
<table border="1" style="margin: 0px; padding: 0px; width: 100%;">
166166
@if (sheet.Attributes != null)
167167
{
168-
foreach (var attribute in sheet.Attributes)
168+
foreach (var attributeItem in sheet.Attributes)
169169
{
170170
<tr>
171-
<td>@attribute.Name</td>
172-
<td>@attribute.Modifier</td>
173-
<td>@attribute.StartValue</td>
174-
<td>@attribute.Value</td>
171+
<td>@attributeItem.Name</td>
172+
<td>@attributeItem.Modifier</td>
173+
<td>@attributeItem.StartValue</td>
174+
<td>@attributeItem.Value</td>
175175
</tr>
176176
}
177177
}

Drachenhorn.sln

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 15
4-
VisualStudioVersion = 15.0.26730.16
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.29519.181
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Git", "Git", "{97542ADA-C7BB-46E2-842E-B3035577629B}"
6+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "_git", "_git", "{97542ADA-C7BB-46E2-842E-B3035577629B}"
77
ProjectSection(SolutionItems) = preProject
88
.gitattributes = .gitattributes
99
.gitignore = .gitignore

0 commit comments

Comments
 (0)