添加项目文件。

This commit is contained in:
GG Z
2025-09-03 21:46:26 +08:00
parent 717d50d2d3
commit da46257be2
16 changed files with 913 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.9.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.3" />
</ItemGroup>
<ItemGroup>
<!-- 标准引用,用于写代码 -->
<ProjectReference Include="..\RevitGen.Common\RevitGen.Common.csproj" />
<!-- 分析器引用,用于代码生成 -->
</ItemGroup>
</Project>