159.341_Assignment_1/Assignment 1/Assignment 1.csproj
Brychan Dempsey 093b4455a6
All checks were successful
continuous-integration/appveyor/branch AppVeyor build succeeded
Added information to the readme
Added examples and automatic copying of them to the output directory, for launching in the example profiles
2021-03-29 12:45:37 +13:00

18 lines
454 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework>
<RootNamespace>Assignment_1</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Folder Include="Examples\" />
</ItemGroup>
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
<Exec Command="xcopy &quot;$(ProjectDir)\Examples\*.txt&quot; &quot;$(OutDir)&quot; /Y /I" />
</Target>
</Project>