csproj cleanups
This commit is contained in:
parent
9aa8a41389
commit
48bd35d20b
6 changed files with 69 additions and 58 deletions
10
Common.targets
Normal file
10
Common.targets
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<Project>
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
||||||
|
<DebugType>none</DebugType>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
|
@ -1,14 +1,14 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>net8.0</TargetFramework>
|
|
||||||
<ImplicitUsings>false</ImplicitUsings>
|
<ImplicitUsings>false</ImplicitUsings>
|
||||||
<Nullable>enable</Nullable>
|
|
||||||
<Configurations>Debug</Configurations>
|
<Configurations>Debug</Configurations>
|
||||||
<RootNamespace>Uwaa.HTTP.Example</RootNamespace>
|
<RootNamespace>Uwaa.HTTP.Example</RootNamespace>
|
||||||
<AssemblyName>Uwaa.HTTP.Example</AssemblyName>
|
<AssemblyName>Uwaa.HTTP.Example</AssemblyName>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<Import Project="../Common.targets"/>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\HTTP\HTTP.csproj" />
|
<ProjectReference Include="..\HTTP\HTTP.csproj" />
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net8.0</TargetFramework>
|
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<Nullable>enable</Nullable>
|
|
||||||
<RootNamespace>Uwaa.HTTP</RootNamespace>
|
<RootNamespace>Uwaa.HTTP</RootNamespace>
|
||||||
<AssemblyName>Uwaa.HTTP</AssemblyName>
|
<AssemblyName>Uwaa.HTTP</AssemblyName>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<Import Project="../Common.targets"/>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net8.0</TargetFramework>
|
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<Nullable>enable</Nullable>
|
|
||||||
<RootNamespace>Uwaa.PNG</RootNamespace>
|
<RootNamespace>Uwaa.PNG</RootNamespace>
|
||||||
|
<AssemblyName>Uwaa.PNG</AssemblyName>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<Import Project="../Common.targets"/>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>net8.0</TargetFramework>
|
|
||||||
<ImplicitUsings>disable</ImplicitUsings>
|
<ImplicitUsings>disable</ImplicitUsings>
|
||||||
<Nullable>enable</Nullable>
|
|
||||||
<RootNamespace>Uwaa.Pleroma.Test</RootNamespace>
|
<RootNamespace>Uwaa.Pleroma.Test</RootNamespace>
|
||||||
<AssemblyName>Uwaa.Pleroma.Test</AssemblyName>
|
<AssemblyName>Uwaa.Pleroma.Test</AssemblyName>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<Import Project="../Common.targets"/>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Pleroma\Pleroma.csproj" />
|
<ProjectReference Include="..\Pleroma\Pleroma.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net8.0</TargetFramework>
|
|
||||||
<ImplicitUsings>disable</ImplicitUsings>
|
<ImplicitUsings>disable</ImplicitUsings>
|
||||||
<Nullable>enable</Nullable>
|
|
||||||
<RootNamespace>Uwaa.Pleroma</RootNamespace>
|
<RootNamespace>Uwaa.Pleroma</RootNamespace>
|
||||||
<AssemblyName>Uwaa.Pleroma</AssemblyName>
|
<AssemblyName>Uwaa.Pleroma</AssemblyName>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<Import Project="../Common.targets"/>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\HTTP\HTTP.csproj" />
|
<ProjectReference Include="..\HTTP\HTTP.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
Loading…
Reference in a new issue