-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSourceGeneration.Reflection.csproj
36 lines (29 loc) · 1.25 KB
/
SourceGeneration.Reflection.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net5.0;net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>12</LangVersion>
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
<Version>1.0.0-beta2.250415.0</Version>
<Authors>SourceGeneration</Authors>
<Description>Reflection based on Source Generator supports AOT compilation</Description>
<PackageTags>reflection,aot,source generator</PackageTags>
<RepositoryUrl>https://github.com/SourceGeneration/Reflection</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/SourceGeneration/Reflection</PackageProjectUrl>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageOutputPath>./../../../nupkg</PackageOutputPath>
<PackageIcon>sg.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<None Include=".\..\..\sg.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
<Visible>false</Visible>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SourceGeneration.Reflection.SourceGenerator\SourceGeneration.Reflection.SourceGenerator.csproj" />
</ItemGroup>
</Project>