Datei: NDOEnhancer/NDOEnhancer/NDOEnhancer.csproj
Last Commit (2a2e7ba)
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 |
New Commit (1e68dc7)
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 | ····<Authors>Mirko Matytschak</Authors> |
11 | ····<Company>Mirko Matytschak</Company> |
12 | <Product>NDOEnhancer</Product> |
13 | ····<PackageTags>NDO;NDOEnhancer;Persistence</PackageTags> |
14 | ····<ProduceReferenceAssembly>False</ProduceReferenceAssembly> |
15 | ··</PropertyGroup> |
16 | |
17 | ··<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
18 | ····<IsPublishable>False</IsPublishable> |
19 | ··</PropertyGroup> |
20 | |
21 | ··<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
22 | ····<IsPublishable>False</IsPublishable> |
23 | ··</PropertyGroup> |
24 | |
25 | ··<Target Name="PrepareEnhDate" BeforeTargets="PrepareForBuild"> |
26 | ····<Exec Command="..\..\Tools\MakeEnhancerDate\bin\Release\net8.0\MakeEnhancerDate.exe > EnhDate.cs" /> |
27 | ··</Target> |
28 | |
29 | ····<Target Name="CopyILDasm" AfterTargets="PrepareForBuild"> |
30 | ········<MakeDir Condition="!Exists('$(OutputPath)\runtimes\win-x64')" Directories="$(OutputPath)\runtimes\win-x64" /> |
31 | ········<MakeDir Condition="!Exists('$(OutputPath)\runtimes\win-x64\native')" Directories="$(OutputPath)\runtimes\win-x64\native" /> |
32 | ········<Exec Command="Copy ILDasm\ILDasm.exe.* $(OutputPath)\runtimes\win-x64\native" /> |
33 | ····</Target> |
34 | |
35 | ····<ItemGroup> |
36 | ····<None Remove="EnhancerParameters.xsd" /> |
37 | ····<None Remove="NDOEnhancer.v12.suo" /> |
38 | ··</ItemGroup> |
39 | |
40 | ··<ItemGroup> |
41 | ····<PackageReference Include="mono.cecil" Version="0.11.4" /> |
42 | ····<PackageReference Include="runtime.linux-x64.Microsoft.NETCore.ILAsm" Version="8.0.0" /> |
43 | ····<PackageReference Include="runtime.linux-x64.Microsoft.NETCore.ILDAsm" Version="8.0.0" /> |
44 | ····<PackageReference Include="runtime.win-x64.Microsoft.NETCore.ILAsm" Version="8.0.0" /> |
45 | ····<PackageReference Include="NDO.dll" Version="5.0.0" /> |
46 | ··</ItemGroup> |
47 | |
48 | ··<ItemGroup> |
49 | ····<ProjectReference Include="..\Ecma335\Ecma335.csproj" /> |
50 | ··</ItemGroup> |
51 | |
52 | ··<ItemGroup> |
53 | ····<Folder Include="ILDasm\" /> |
54 | ··</ItemGroup> |
55 | |
56 | ··<ItemGroup> |
57 | ····<None Update="Readme.md"> |
58 | ······<Pack>True</Pack> |
59 | ······<PackagePath>\</PackagePath> |
60 | ····</None> |
61 | ··</ItemGroup> |
62 | |
63 | </Project> |
64 |