Skip to content

Commit 8599a1b

Browse files
committed
added sln
1 parent 5f163df commit 8599a1b

3 files changed

Lines changed: 30 additions & 2 deletions

File tree

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,7 @@ ExportedObj/
3333
sysinfo.txt
3434

3535
# Builds
36-
*.apk
36+
*.apk
37+
38+
# Whitelist
39+
!/SourceGenerators/*
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.0.31919.166
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PolymorphicStructsSourceGenerators", "PolymorphicStructsSourceGenerators\PolymorphicStructsSourceGenerators.csproj", "{454B6834-A6FC-432C-A3EF-702EFA899A7F}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{454B6834-A6FC-432C-A3EF-702EFA899A7F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{454B6834-A6FC-432C-A3EF-702EFA899A7F}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{454B6834-A6FC-432C-A3EF-702EFA899A7F}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{454B6834-A6FC-432C-A3EF-702EFA899A7F}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {C2E19360-9CA5-4957-AB7F-28876225DC27}
24+
EndGlobalSection
25+
EndGlobal

SourceGenerators/PolymorphicStructsSourceGenerators/PolymorphicStructsSourceGenerators/PolymorphicStructsSourceGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ private static List<IndividialStructData> BuildIndividualStructsData(GeneratorEx
316316
IndividialStructData structData = new IndividialStructData();
317317
structData.Namespace = SourceGenUtils.GetNamespace(individualStruct);
318318
structData.StructName = individualStruct.Identifier.ToString();
319-
319+
320320
// Add usings
321321
foreach (var u in individualStruct.SyntaxTree.GetCompilationUnitRoot(context.CancellationToken).Usings)
322322
{

0 commit comments

Comments
 (0)