| 12345678910111213141516171819202122 |
- <Project Sdk="Microsoft.NET.Sdk">
- <ItemGroup>
- <ProjectReference Include="..\..\src\Lua\Lua.csproj"/>
- <ProjectReference Include="..\..\src\Lua.SourceGenerator\Lua.SourceGenerator.csproj">
- <OutputItemType>Analyzer</OutputItemType>
- <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
- </ProjectReference>
- </ItemGroup>
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net8.0</TargetFramework>
- <LangVersion>13</LangVersion>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- <EmitCompilerGeneratedFiles>false</EmitCompilerGeneratedFiles>
- <CompilerGeneratedFilesOutputPath>Generated</CompilerGeneratedFilesOutputPath>
- </PropertyGroup>
- </Project>
|