Island.StandardLib.csproj 906 B

123456789101112131415161718192021222324252627
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net40</TargetFramework>
  4. <AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
  5. <RootNamespace>Island.StandardLib</RootNamespace>
  6. <UserSecretsId>f7b5068b-36b4-44c3-ba8e-a493656698ae</UserSecretsId>
  7. </PropertyGroup>
  8. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  9. <OutputPath>G:\net40\</OutputPath>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  12. <GenerateSerializationAssemblies>On</GenerateSerializationAssemblies>
  13. <OutputPath>G:\net40\</OutputPath>
  14. </PropertyGroup>
  15. <ItemGroup>
  16. <Folder Include="Properties\" />
  17. </ItemGroup>
  18. <Target Name="PostBuild" AfterTargets="PostBuildEvent">
  19. <Exec Command="copy $(TargetPath) D:\Forgetive2\Assets\Plugins\Island.StandardLib.dll" />
  20. </Target>
  21. </Project>