ConsoleApp1.csproj 823 B

12345678910111213141516171819202122
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <ItemGroup>
  3. <ProjectReference Include="..\..\src\Lua\Lua.csproj"/>
  4. <ProjectReference Include="..\..\src\Lua.SourceGenerator\Lua.SourceGenerator.csproj">
  5. <OutputItemType>Analyzer</OutputItemType>
  6. <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
  7. </ProjectReference>
  8. </ItemGroup>
  9. <PropertyGroup>
  10. <OutputType>Exe</OutputType>
  11. <TargetFramework>net8.0</TargetFramework>
  12. <LangVersion>13</LangVersion>
  13. <ImplicitUsings>enable</ImplicitUsings>
  14. <Nullable>enable</Nullable>
  15. <EmitCompilerGeneratedFiles>false</EmitCompilerGeneratedFiles>
  16. <CompilerGeneratedFilesOutputPath>Generated</CompilerGeneratedFilesOutputPath>
  17. </PropertyGroup>
  18. </Project>