|
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <OutputType>Exe</OutputType> |
| 5 | + <TargetFramework>net10.0</TargetFramework> |
| 6 | + <Configurations>Debug;Release;Test</Configurations> |
| 7 | + </PropertyGroup> |
| 8 | + |
| 9 | + <ItemGroup> |
| 10 | + <None Remove="appsettings.Development.json" /> |
| 11 | + <None Remove="appsettings.json" /> |
| 12 | + </ItemGroup> |
| 13 | + |
| 14 | + <ItemGroup> |
| 15 | + <Content Include="appsettings.Development.json"> |
| 16 | + <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> |
| 17 | + </Content> |
| 18 | + <Content Include="appsettings.json"> |
| 19 | + <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> |
| 20 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 21 | + </Content> |
| 22 | + </ItemGroup> |
| 23 | + |
| 24 | + <ItemGroup> |
| 25 | + <PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="10.0.0" /> |
| 26 | + <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.0" /> |
| 27 | + <PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.0" /> |
| 28 | + <PackageReference Include="Microsoft.Net.Http.Headers" Version="10.0.0" /> |
| 29 | + |
| 30 | + <!--<FrameworkReference Include="Microsoft.AspNetCore.App" />--> |
| 31 | + |
| 32 | + </ItemGroup> |
| 33 | + |
| 34 | + <ItemGroup> |
| 35 | + <ProjectReference Include="..\..\src\Senparc.CO2NET.APM\Senparc.CO2NET.APM.csproj" /> |
| 36 | + <ProjectReference Include="..\..\src\Senparc.CO2NET.Cache.CsRedis\Senparc.CO2NET.Cache.CsRedis.csproj" /> |
| 37 | + <ProjectReference Include="..\..\src\Senparc.CO2NET.Cache.Memcached\Senparc.CO2NET.Cache.Memcached.csproj" /> |
| 38 | + <ProjectReference Include="..\..\src\Senparc.CO2NET.Cache.Redis.RedLock\redlock-cs\src\Senparc.CO2NET.Cache.Redis.RedLock.csproj" /> |
| 39 | + <ProjectReference Include="..\..\src\Senparc.CO2NET.Cache.Redis\Senparc.CO2NET.Cache.Redis.csproj" /> |
| 40 | + <ProjectReference Include="..\..\src\Senparc.CO2NET.WebApi\Senparc.CO2NET.WebApi.csproj" /> |
| 41 | + <ProjectReference Include="..\..\src\Senparc.CO2NET\Senparc.CO2NET.csproj" /> |
| 42 | + </ItemGroup> |
| 43 | + |
| 44 | +</Project> |
| 45 | + |
0 commit comments