Datei: NDOEnhancer/NDOEnhancer/NDOEnhancer.csproj
Last Commit (6f29331)
| 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\net8. 0\NDO. MySqlConnector. dll" DestinationFolder="bin\Debug\$( TargetFramework) "/> |
| 37 | <Copy SourceFiles=". . \. . \Provider\MySqlNdoProvider\NDO. MySql\bin\Release\net8. 0\NDO. MySql. dll" DestinationFolder="bin\Debug\$( TargetFramework) "/> |
| 38 | <Copy SourceFiles=". . \. . \Provider\OracleProvider\NDO. Oracle\bin\Release\net8. 0\NDO. Oracle. dll" DestinationFolder="bin\Debug\$( TargetFramework) "/> |
| 39 | <Copy SourceFiles=". . \. . \Provider\PostGresProvider\NDO. Postgre\bin\Release\net8. 0\NDO. Postgre. dll" DestinationFolder="bin\Debug\$( TargetFramework) "/> |
| 40 | <Copy SourceFiles=". . \. . \Provider\SqliteProvider\NDO. Sqlite\bin\Release\net8. 0\NDO. Sqlite. dll" DestinationFolder="bin\Debug\$( TargetFramework) "/> |
| 41 | <Copy SourceFiles=". . \. . \Provider\SqlServerProvider\NDO. SqlServer\bin\Release\net8. 0\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 |
New Commit (4666cb7)
| 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. 1. 0</Version> |
| 9 | <AssemblyVersion>5. 0. 1. 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 |