Datei: NDOEnhancer/NDOEnhancer/NDOEnhancer.csproj
Last Commit (e4584c5)
1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | |
3 | ··<PropertyGroup> |
4 | ····<OutputType>Exe</OutputType> |
5 | ····<TargetFramework>net9.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 | ····<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" /> |
37 | ····<PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.0" /> |
38 | ····<PackageReference Include="mono.cecil" Version="0.11.6" /> |
39 | ····<PackageReference Include="NDO.ProviderFactory" Version="5.0.0" /> |
40 | ····<PackageReference Include="NDOInterfaces" Version="5.0.0" /> |
41 | ····<PackageReference Include="runtime.linux-x64.Microsoft.NETCore.ILAsm" Version="8.0.0" /> |
42 | ····<PackageReference Include="runtime.linux-x64.Microsoft.NETCore.ILDAsm" Version="8.0.0" /> |
43 | ····<PackageReference Include="runtime.win-x64.Microsoft.NETCore.ILAsm" Version="8.0.0" /> |
44 | ··</ItemGroup> |
45 | |
46 | ··<ItemGroup> |
47 | ····<ProjectReference Include="..\..\NDO.Mapping\NDO.Mapping\NDO.Mapping.csproj" /> |
48 | ····<ProjectReference Include="..\..\NDO.SchemaGenerator\NDO.SchemaGenerator\NDO.SchemaGenerator.csproj" /> |
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 |
New Commit (3917c60)
1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | |
3 | ··<PropertyGroup> |
4 | ····<OutputType>Exe</OutputType> |
5 | ····<TargetFramework>net9.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 | ····<Target Name="CopyProviders" AfterTargets="Build" Condition="'$(Configuration)'=='Debug'"> |
36 | ········<Copy SourceFiles="..\..\Provider\MySqlConnectorProvider\NDO.MySqlConnector\bin\Release\$(TargetFramework)\NDO.MySqlConnector.dll" DestinationFolder="bin\Debug\$(TargetFramework)"/> |
37 | ········<Copy SourceFiles="..\..\Provider\MySqlNdoProvider\NDO.MySql\bin\Release\$(TargetFramework)\NDO.MySql.dll" DestinationFolder="bin\Debug\$(TargetFramework)"/> |
38 | ········<Copy SourceFiles="..\..\Provider\OracleProvider\NDO.Oracle\bin\Release\$(TargetFramework)\NDO.Oracle.dll" DestinationFolder="bin\Debug\$(TargetFramework)"/> |
39 | ········<Copy SourceFiles="..\..\Provider\PostGresProvider\NDO.Postgre\bin\Release\$(TargetFramework)\NDO.Postgre.dll" DestinationFolder="bin\Debug\$(TargetFramework)"/> |
40 | ········<Copy SourceFiles="..\..\Provider\SqliteProvider\NDO.Sqlite\bin\Release\$(TargetFramework)\NDO.Sqlite.dll" DestinationFolder="bin\Debug\$(TargetFramework)"/> |
41 | ········<Copy SourceFiles="..\..\Provider\SqlServerProvider\NDO.SqlServer\bin\Release\$(TargetFramework)\NDO.Sqlserver.dll" DestinationFolder="bin\Debug\$(TargetFramework)"/> |
42 | ····</Target> |
43 | |
44 | ··<ItemGroup> |
45 | ····<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" /> |
46 | ····<PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.0" /> |
47 | ····<PackageReference Include="mono.cecil" Version="0.11.6" /> |
48 | ····<PackageReference Include="NDO.ProviderFactory" Version="5.0.0" /> |
49 | ····<PackageReference Include="NDOInterfaces" Version="5.0.0" /> |
50 | ····<PackageReference Include="runtime.linux-x64.Microsoft.NETCore.ILAsm" Version="8.0.0" /> |
51 | ····<PackageReference Include="runtime.linux-x64.Microsoft.NETCore.ILDAsm" Version="8.0.0" /> |
52 | ····<PackageReference Include="runtime.win-x64.Microsoft.NETCore.ILAsm" Version="8.0.0" /> |
53 | ··</ItemGroup> |
54 | |
55 | ··<ItemGroup> |
56 | ····<ProjectReference Include="..\..\NDO.Mapping\NDO.Mapping\NDO.Mapping.csproj" /> |
57 | ····<ProjectReference Include="..\..\NDO.SchemaGenerator\NDO.SchemaGenerator\NDO.SchemaGenerator.csproj" /> |
58 | ····<ProjectReference Include="..\Ecma335\Ecma335.csproj" /> |
59 | ··</ItemGroup> |
60 | |
61 | ··<ItemGroup> |
62 | ····<Folder Include="ILDasm\" /> |
63 | ··</ItemGroup> |
64 | |
65 | ··<ItemGroup> |
66 | ····<None Update="Readme.md"> |
67 | ······<Pack>True</Pack> |
68 | ······<PackagePath>\</PackagePath> |
69 | ····</None> |
70 | ··</ItemGroup> |
71 | |
72 | </Project> |
73 |