Datei: NDOEnhancer/NDOEnhancer/NDOEnhancer.csproj
Last Commit (add8490)
| 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | |
| 3 | ··<PropertyGroup> |
| 4 | ····<OutputType>Exe</OutputType> |
| 5 | ····<TargetFramework>net8.0</TargetFramework> |
| 6 | ····<ImplicitUsings>disable</ImplicitUsings> |
| 7 | ····<Nullable>disable</Nullable> |
| 8 | ······<Version>5.0.0.0</Version> |
| 9 | ······<AssemblyVersion>5.0.0.0</AssemblyVersion> |
| 10 | ··</PropertyGroup> |
| 11 | |
| 12 | ··<Target Name="PrepareEnhDate" BeforeTargets="PrepareForBuild"> |
| 13 | ····<Exec Command="..\..\Tools\MakeEnhancerDate\bin\Release\net8.0\MakeEnhancerDate.exe > EnhDate.cs" /> |
| 14 | ··</Target> |
| 15 | |
| 16 | ····<Target Name="CopyILDasm" AfterTargets="PrepareForBuild"> |
| 17 | ········<MakeDir Condition="!Exists('$(OutputPath)\runtimes\win-x64')" Directories="$(OutputPath)\runtimes\win-x64" /> |
| 18 | ········<MakeDir Condition="!Exists('$(OutputPath)\runtimes\win-x64\native')" Directories="$(OutputPath)\runtimes\win-x64\native" /> |
| 19 | ········<Exec Command="Copy ILDasm\ILDasm.exe.* $(OutputPath)\runtimes\win-x64\native" /> |
| 20 | ····</Target> |
| 21 | |
| 22 | ····<ItemGroup> |
| 23 | ····<None Remove="EnhancerParameters.xsd" /> |
| 24 | ····<None Remove="NDOEnhancer.v12.suo" /> |
| 25 | ··</ItemGroup> |
| 26 | |
| 27 | ··<ItemGroup> |
| 28 | ····<PackageReference Include="mono.cecil" Version="0.11.4" /> |
| 29 | ····<PackageReference Include="runtime.linux-x64.Microsoft.NETCore.ILAsm" Version="8.0.0" /> |
| 30 | ····<PackageReference Include="runtime.linux-x64.Microsoft.NETCore.ILDAsm" Version="8.0.0" /> |
| 31 | ····<PackageReference Include="runtime.win-x64.Microsoft.NETCore.ILAsm" Version="8.0.0" /> |
| 32 | ··</ItemGroup> |
| 33 | |
| 34 | ··<ItemGroup> |
| 35 | ····<ProjectReference Include="..\..\NDODLL\NDO.csproj" /> |
| 36 | ····<ProjectReference Include="..\Ecma335\Ecma335.csproj" /> |
| 37 | ··</ItemGroup> |
| 38 | |
| 39 | ··<ItemGroup> |
| 40 | ····<Folder Include="ILDasm\" /> |
| 41 | ··</ItemGroup> |
| 42 | |
| 43 | </Project> |
| 44 |
New Commit (2ee4f7f)
| 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | |
| 3 | ··<PropertyGroup> |
| 4 | ····<OutputType>Exe</OutputType> |
| 5 | ····<TargetFramework>net8.0</TargetFramework> |
| 6 | ····<ImplicitUsings>disable</ImplicitUsings> |
| 7 | ····<Nullable>disable</Nullable> |
| 8 | ······<Version>5.0.0.0</Version> |
| 9 | ······<AssemblyVersion>5.0.0.0</AssemblyVersion> |
| 10 | ······<PackageId>NDO.Build</PackageId> |
| 11 | ······<GeneratePackageOnBuild>True</GeneratePackageOnBuild> |
| 12 | ······<Authors>Mirko Matytschak</Authors> |
| 13 | ······<Company>Mirko Matytschak</Company> |
| 14 | ······<Product>NDO.Build</Product> |
| 15 | ······<PackageReadmeFile>Readme.md</PackageReadmeFile> |
| 16 | ······<PackageProjectUrl>https://www.netdataobjects.de</PackageProjectUrl> |
| 17 | ······<RepositoryUrl>https://github.com/mirkomaty/NDO</RepositoryUrl> |
| 18 | ······<RepositoryType>git</RepositoryType> |
| 19 | ······<PackageTags>NDO;NDOEnhancer;Persistence</PackageTags> |
| 20 | ······<PackageOutputPath></PackageOutputPath> |
| 21 | ······<ProduceReferenceAssembly>False</ProduceReferenceAssembly> |
| 22 | ··</PropertyGroup> |
| 23 | |
| 24 | ··<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
| 25 | ····<IsPublishable>False</IsPublishable> |
| 26 | ··</PropertyGroup> |
| 27 | |
| 28 | ··<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
| 29 | ····<IsPublishable>False</IsPublishable> |
| 30 | ··</PropertyGroup> |
| 31 | |
| 32 | ··<Target Name="PrepareEnhDate" BeforeTargets="PrepareForBuild"> |
| 33 | ····<Exec Command="..\..\Tools\MakeEnhancerDate\bin\Release\net8.0\MakeEnhancerDate.exe > EnhDate.cs" /> |
| 34 | ··</Target> |
| 35 | |
| 36 | ····<Target Name="CopyILDasm" AfterTargets="PrepareForBuild"> |
| 37 | ········<MakeDir Condition="!Exists('$(OutputPath)\runtimes\win-x64')" Directories="$(OutputPath)\runtimes\win-x64" /> |
| 38 | ········<MakeDir Condition="!Exists('$(OutputPath)\runtimes\win-x64\native')" Directories="$(OutputPath)\runtimes\win-x64\native" /> |
| 39 | ········<Exec Command="Copy ILDasm\ILDasm.exe.* $(OutputPath)\runtimes\win-x64\native" /> |
| 40 | ····</Target> |
| 41 | |
| 42 | ····<ItemGroup> |
| 43 | ····<None Remove="EnhancerParameters.xsd" /> |
| 44 | ····<None Remove="NDOEnhancer.v12.suo" /> |
| 45 | ··</ItemGroup> |
| 46 | |
| 47 | ··<ItemGroup> |
| 48 | ····<PackageReference Include="mono.cecil" Version="0.11.4" /> |
| 49 | ····<PackageReference Include="runtime.linux-x64.Microsoft.NETCore.ILAsm" Version="8.0.0" /> |
| 50 | ····<PackageReference Include="runtime.linux-x64.Microsoft.NETCore.ILDAsm" Version="8.0.0" /> |
| 51 | ····<PackageReference Include="runtime.win-x64.Microsoft.NETCore.ILAsm" Version="8.0.0" /> |
| 52 | ····<PackageReference Include="NDO.dll" Version="5.0.0" /> |
| 53 | ··</ItemGroup> |
| 54 | |
| 55 | ··<ItemGroup> |
| 56 | ····<ProjectReference Include="..\Ecma335\Ecma335.csproj" /> |
| 57 | ··</ItemGroup> |
| 58 | |
| 59 | ··<ItemGroup> |
| 60 | ····<Folder Include="ILDasm\" /> |
| 61 | ··</ItemGroup> |
| 62 | |
| 63 | ··<ItemGroup> |
| 64 | ····<None Update="Readme.md"> |
| 65 | ······<Pack>True</Pack> |
| 66 | ······<PackagePath>\</PackagePath> |
| 67 | ····</None> |
| 68 | ··</ItemGroup> |
| 69 | |
| 70 | </Project> |
| 71 |