19 lines
563 B
XML
19 lines
563 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\PoyoLang.Translator.SourceGenerator\PoyoLang.Translator.SourceGenerator.csproj" ReferenceOutputAssembly="false" OutputItemType="Analyzer" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="dictionary.json" />
|
|
<AdditionalFiles Include="dictionary.json" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|