mirror of
https://github.com/AlexMacocian/Plumsy.git
synced 2026-07-15 14:59:30 +00:00
Add project files.
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using System.Extensions;
|
||||
|
||||
namespace Plum.Net.Tests.SimplePlugin;
|
||||
|
||||
public sealed class Main
|
||||
{
|
||||
public Main()
|
||||
{
|
||||
this.ThrowIfNull("this");
|
||||
}
|
||||
|
||||
public bool ReturnTrue() => true;
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<DestinationFolder>$(SolutionDir)SimplePlugin</DestinationFolder>
|
||||
</PropertyGroup>
|
||||
|
||||
<Target Name="CopyAssembliesToSolution" AfterTargets="PostBuildEvent">
|
||||
<Copy SourceFiles="$(OutputPath)$(AssemblyName).dll" DestinationFolder="$(DestinationFolder)" />
|
||||
<Copy SourceFiles="$(OutputPath)SystemExtensions.NetStandard.dll" DestinationFolder="$(DestinationFolder)" />
|
||||
</Target>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="SystemExtensions.NetStandard" Version="1.6.2" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
Reference in New Issue
Block a user