21 lines
580 B
XML
21 lines
580 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<ItemGroup>
|
|
<Content Update="input.xml">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\XMLParser.Contract\XMLParser.Contract.csproj" />
|
|
<ProjectReference Include="..\XMLParser.Model\XMLParser.Model.csproj" />
|
|
<ProjectReference Include="..\XMLParser.Functions\XMLParser.Functions.csproj" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|