mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
18 lines
525 B
XML
18 lines
525 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net471</TargetFramework>
|
|
<OutputType>WinExe</OutputType>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
<LangVersion>Latest</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="scripts\**" CopyToOutputDirectory="Always" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.PowerShell.3.ReferenceAssemblies" Version="1.0.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|