2019-06-24 09:42:13 +08:00
|
|
|
<Project>
|
|
|
|
<PropertyGroup>
|
|
|
|
<SignAssembly>true</SignAssembly>
|
|
|
|
<AssemblyOriginatorKeyFile>..\Keys\Longbow.Utility.snk</AssemblyOriginatorKeyFile>
|
|
|
|
<Copyright>Longbow</Copyright>
|
|
|
|
<Authors>Argo Zhang(argo@163.com)</Authors>
|
|
|
|
<Company>Longbow</Company>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2019-07-31 22:50:54 +08:00
|
|
|
<PropertyGroup>
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2019-08-10 18:11:35 +08:00
|
|
|
<PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp2.2'">
|
|
|
|
<MvcRazorCompileOnPublish>true</MvcRazorCompileOnPublish>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2019-06-24 09:42:13 +08:00
|
|
|
<ItemGroup>
|
|
|
|
<None Include="..\Keys\Longbow.Utility.snk" Link="Longbow.Utility.snk" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<Target Condition=" '$(TargetFramework)' == 'netcoreapp2.2' " Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
|
|
<Message Text="Copy file -> $(TargetDir)" Importance="high" />
|
|
|
|
<Copy Condition="'$(OS)' == 'Windows_NT'" DestinationFolder="$(TargetDir)" SourceFiles="$(ProjectDir)..\Scripts\Longbow.lic" SkipUnchangedFiles="true" />
|
|
|
|
<Copy Condition="'$(OS)' == 'UNIX'" DestinationFolder="$(TargetDir)" SourceFiles="$(ProjectDir)../Scripts/Longbow.lic" SkipUnchangedFiles="true" />
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
</Project>
|