Skip to content

Commit a9e927e

Browse files
committed
initialize commit
1 parent 39e3f95 commit a9e927e

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
namespace SourceGeneration.Reflection.SourceGenerator.TestLib;
2+
3+
[SourceReflection]
4+
public class LibTestClass
5+
{
6+
public required int RequiredProperty { get; set; } = 1;
7+
8+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net8.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
</PropertyGroup>
8+
9+
<ItemGroup>
10+
<ProjectReference Include="..\SourceGeneration.Reflection.SourceGenerator\SourceGeneration.Reflection.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
11+
<ProjectReference Include="..\SourceGeneration.Reflection\SourceGeneration.Reflection.csproj" />
12+
</ItemGroup>
13+
14+
</Project>

0 commit comments

Comments
 (0)