2021-03-17 18:24:31 +13:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2021-03-11 12:56:25 +13:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2021-03-29 10:50:46 +13:00
|
|
|
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
2021-03-11 12:56:25 +13:00
|
|
|
|
<RootNamespace>Assignment_1</RootNamespace>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2021-03-29 12:45:37 +13:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="Examples\" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
|
|
|
|
<Exec Command="xcopy "$(ProjectDir)\Examples\*.txt" "$(OutDir)" /Y /I" />
|
|
|
|
|
</Target>
|
|
|
|
|
|
2021-03-11 12:56:25 +13:00
|
|
|
|
</Project>
|