All checks were successful
continuous-integration/appveyor/branch AppVeyor build succeeded
14 lines
389 B
XML
14 lines
389 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
|
<RootNamespace>Assignment_1</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
|
<Exec Command="xcopy "$(ProjectDir)\Examples\*.txt" "$(OutDir)" /Y /I" />
|
|
</Target>
|
|
|
|
</Project>
|