123456789101112131415161718192021222324252627 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net40</TargetFramework>
- <AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
- <RootNamespace>Island.StandardLib</RootNamespace>
- <UserSecretsId>f7b5068b-36b4-44c3-ba8e-a493656698ae</UserSecretsId>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <OutputPath>G:\net40\</OutputPath>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <GenerateSerializationAssemblies>On</GenerateSerializationAssemblies>
- <OutputPath>G:\net40\</OutputPath>
- </PropertyGroup>
- <ItemGroup>
- <Folder Include="Properties\" />
- </ItemGroup>
- <Target Name="PostBuild" AfterTargets="PostBuildEvent">
- <Exec Command="copy $(TargetPath) D:\Forgetive2\Assets\Plugins\Island.StandardLib.dll" />
- </Target>
- </Project>
|