Skip to content

Commit

Permalink
Auto csproj fix and update by bot.
Browse files Browse the repository at this point in the history
  • Loading branch information
NugetNinja committed Aug 21, 2023
1 parent 870c1fa commit 95a1b4d
Show file tree
Hide file tree
Showing 4 changed files with 190 additions and 203 deletions.
Original file line number Diff line number Diff line change
@@ -1,45 +1,43 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>

<ItemGroup>
<None Remove="App_Data\skills\ResponseChooseSkill\ResponseMessageChoose\skprompt.20230409-01.txt" />
<None Remove="App_Data\skills\ResponseChooseSkill\ResponseMessageChoose\skprompt.txt" />
<None Remove="App_Data\skills\ResponseWriteSkill\ResponseMessageImage\skprompt.txt" />
<None Remove="App_Data\skills\ResponseWriteSkill\ResponseMessageText\skprompt.txt" />
<None Remove="test.png" />
</ItemGroup>

<ItemGroup>
<Content Include="App_Data\skills\ResponseChooseSkill\ResponseMessageChoose\skprompt.20230409-01.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="App_Data\skills\ResponseChooseSkill\ResponseMessageChoose\skprompt.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="App_Data\skills\ResponseWriteSkill\ResponseMessageImage\skprompt.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="App_Data\skills\ResponseWriteSkill\ResponseMessageText\skprompt.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="test.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Senparc.Weixin.AspNet" Version="0.8.5.8" />
<PackageReference Include="Senparc.Weixin.MP" Version="16.18.10.6" />
<PackageReference Include="Senparc.Weixin.MP.Middleware" Version="0.8.5.7" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\src\Senparc.Weixin.AI\Senparc.Weixin.AI.csproj" />
</ItemGroup>

</Project>
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>Senparc.Weixin.AI.MPSample</AssemblyName>
<RootNamespace>Senparc.Weixin.AI.MPSample</RootNamespace>
<IsTestProject>false</IsTestProject>
<IsPackable>false</IsPackable>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Remove="App_Data\skills\ResponseChooseSkill\ResponseMessageChoose\skprompt.20230409-01.txt" />
<None Remove="App_Data\skills\ResponseChooseSkill\ResponseMessageChoose\skprompt.txt" />
<None Remove="App_Data\skills\ResponseWriteSkill\ResponseMessageImage\skprompt.txt" />
<None Remove="App_Data\skills\ResponseWriteSkill\ResponseMessageText\skprompt.txt" />
<None Remove="test.png" />
</ItemGroup>
<ItemGroup>
<Content Include="App_Data\skills\ResponseChooseSkill\ResponseMessageChoose\skprompt.20230409-01.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="App_Data\skills\ResponseChooseSkill\ResponseMessageChoose\skprompt.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="App_Data\skills\ResponseWriteSkill\ResponseMessageImage\skprompt.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="App_Data\skills\ResponseWriteSkill\ResponseMessageText\skprompt.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="test.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Senparc.Weixin.AspNet" Version="0.8.6" />
<PackageReference Include="Senparc.Weixin.MP.Middleware" Version="0.8.6" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Senparc.Weixin.AI\Senparc.Weixin.AI.csproj" />
</ItemGroup>
</Project>
21 changes: 12 additions & 9 deletions src/Senparc.Weixin.AI.MP/Senparc.Weixin.AI.MP.csproj
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

</Project>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>Senparc.Weixin.AI.MP</AssemblyName>
<RootNamespace>Senparc.Weixin.AI.MP</RootNamespace>
<IsTestProject>false</IsTestProject>
<IsPackable>false</IsPackable>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
81 changes: 37 additions & 44 deletions src/Senparc.Weixin.AI.Tests/Senparc.Weixin.AI.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,44 +1,37 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

<IsPackable>false</IsPackable>

<Configurations>Debug;Release;Test</Configurations>
</PropertyGroup>

<ItemGroup>
<None Remove="appsettings.json" />
<None Remove="appsettings.test.json" />
</ItemGroup>

<ItemGroup>
<Content Include="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="appsettings.test.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
<PackageReference Include="Moq" Version="4.18.4" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.8" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.8" />
<PackageReference Include="coverlet.collector" Version="3.1.2" />
<PackageReference Include="Senparc.CO2NET.AspNet" Version="1.1.4.8" />
<PackageReference Include="Senparc.CO2NET.Cache.Redis" Version="4.1.2.6" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Senparc.Weixin.AI\Senparc.Weixin.AI.csproj" />
</ItemGroup>

</Project>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>Senparc.Weixin.AI.Tests</RootNamespace>
<IsTestProject>true</IsTestProject>
<IsPackable>false</IsPackable>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Configurations>Debug;Release;Test</Configurations>
</PropertyGroup>
<ItemGroup>
<None Remove="appsettings.json" />
<None Remove="appsettings.test.json" />
</ItemGroup>
<ItemGroup>
<Content Include="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="appsettings.test.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="7.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.1" />
<PackageReference Include="Moq" Version="4.20.69" />
<PackageReference Include="MSTest.TestAdapter" Version="3.1.1" />
<PackageReference Include="MSTest.TestFramework" Version="3.1.1" />
<PackageReference Include="coverlet.collector" Version="6.0.0" />
<PackageReference Include="Senparc.CO2NET.AspNet" Version="1.1.5.9" />
<PackageReference Include="Senparc.CO2NET.Cache.Redis" Version="4.1.4" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Senparc.Weixin.AI\Senparc.Weixin.AI.csproj" />
</ItemGroup>
</Project>
Loading

0 comments on commit 95a1b4d

Please sign in to comment.