Datei: NDOEnhancer/NDOEnhancer/NDOEnhancer.csproj

Last Commit (15c3997)
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 &gt; 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="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
42 ····<PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.0" />
43 ····<PackageReference Include="mono.cecil" Version="0.11.4" />
44 ····<PackageReference Include="NDO.ProviderFactory" Version="5.0.0" />
45 ····<PackageReference Include="NDOInterfaces" Version="5.0.0" />
46 ····<PackageReference Include="runtime.linux-x64.Microsoft.NETCore.ILAsm" Version="8.0.0" />
47 ····<PackageReference Include="runtime.linux-x64.Microsoft.NETCore.ILDAsm" Version="8.0.0" />
48 ····<PackageReference Include="runtime.win-x64.Microsoft.NETCore.ILAsm" Version="8.0.0" />
49 ··</ItemGroup>
50
51 ··<ItemGroup>
52 ····<ProjectReference Include="..\..\NDO.Mapping\NDO.Mapping\NDO.Mapping.csproj" />
53 ····<ProjectReference Include="..\..\NDO.SchemaGenerator\NDO.SchemaGenerator\NDO.SchemaGenerator.csproj" />
54 ····<ProjectReference Include="..\Ecma335\Ecma335.csproj" />
55 ··</ItemGroup>
56
57 ··<ItemGroup>
58 ····<Folder Include="ILDasm\" />
59 ··</ItemGroup>
60
61 ··<ItemGroup>
62 ····<None Update="Readme.md">
63 ······<Pack>True</Pack>
64 ······<PackagePath>\</PackagePath>
65 ····</None>
66 ··</ItemGroup>
67
68 </Project>
69
New Commit (d2d305f)
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 &gt; 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.4" />
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