-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #120 from twilio-labs/remove-unsupported-frameworks
Remove unsupported frameworks and update/remove packages
- Loading branch information
Showing
14 changed files
with
322 additions
and
313 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
89 changes: 43 additions & 46 deletions
89
src/Twilio.AspNet.Mvc.UnitTests/Twilio.AspNet.Mvc.UnitTests.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,46 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<OutputType>Library</OutputType> | ||
<TargetFramework>net471</TargetFramework> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="Microsoft.CSharp" /> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Configuration" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.Net" /> | ||
<Reference Include="System.Net.Http" /> | ||
<Reference Include="System.Runtime.Serialization" /> | ||
<Reference Include="System.Web" /> | ||
<Reference Include="System.Xml" /> | ||
<Reference Include="System.Xml.Linq" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\Twilio.AspNet.Common\Twilio.AspNet.Common.csproj" /> | ||
<ProjectReference Include="..\Twilio.AspNet.Mvc\Twilio.AspNet.Mvc.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="app.config" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Castle.Core" Version="4.4.0" /> | ||
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="5.2.1" /> | ||
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="5.2.1" /> | ||
<PackageReference Include="Moq" Version="4.16.1" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" /> | ||
<PackageReference Include="Twilio" Version="6.2.0" /> | ||
<PackageReference Include="xunit" Version="2.3.1" /> | ||
<PackageReference Include="xunit.abstractions" Version="2.0.1" /> | ||
<PackageReference Include="xunit.analyzers" Version="0.8.0" /> | ||
<PackageReference Include="xunit.assert" Version="2.3.1" /> | ||
<PackageReference Include="xunit.core" Version="2.3.1" /> | ||
<PackageReference Include="xunit.extensibility.core" Version="2.3.1" /> | ||
<PackageReference Include="xunit.extensibility.execution" Version="2.3.1" /> | ||
<PackageReference Include="xunit.runner.console" Version="2.3.1"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<OutputType>Library</OutputType> | ||
<TargetFramework>net471</TargetFramework> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="Microsoft.CSharp" /> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Configuration" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.Net" /> | ||
<Reference Include="System.Net.Http" /> | ||
<Reference Include="System.Runtime.Serialization" /> | ||
<Reference Include="System.Web" /> | ||
<Reference Include="System.Xml" /> | ||
<Reference Include="System.Xml.Linq" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\Twilio.AspNet.Common\Twilio.AspNet.Common.csproj" /> | ||
<ProjectReference Include="..\Twilio.AspNet.Mvc\Twilio.AspNet.Mvc.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="app.config" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Castle.Core" Version="5.1.1" /> | ||
<PackageReference Include="Moq" Version="4.18.4" /> | ||
<PackageReference Include="Twilio" Version="6.2.2" /> | ||
<PackageReference Include="xunit" Version="2.4.2" /> | ||
<PackageReference Include="xunit.abstractions" Version="2.0.3" /> | ||
<PackageReference Include="xunit.analyzers" Version="1.1.0" /> | ||
<PackageReference Include="xunit.assert" Version="2.4.2" /> | ||
<PackageReference Include="xunit.core" Version="2.4.2" /> | ||
<PackageReference Include="xunit.extensibility.core" Version="2.4.2" /> | ||
<PackageReference Include="xunit.extensibility.execution" Version="2.4.2" /> | ||
<PackageReference Include="xunit.runner.console" Version="2.4.2"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,69 +1,68 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<OutputType>Library</OutputType> | ||
<TargetFramework>net462</TargetFramework> | ||
<Version>0.0.0-alpha</Version> | ||
<PackageId>Twilio.AspNet.Mvc</PackageId> | ||
<PackageVersion>0.0.0-alpha</PackageVersion> | ||
<Authors>Twilio Labs</Authors> | ||
<Description>Twilio helper library for ASP.NET MVC on .NET Framework.</Description> | ||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> | ||
<PackageReleaseNotes>Refer to the changelog at https://github.com/twilio-labs/twilio-aspnet/blob/main/CHANGELOG.md</PackageReleaseNotes> | ||
<Copyright>Copyright 2022 (c) Twilio, Inc. All rights reserved.</Copyright> | ||
<PackageTags>twilio;twiml;sms;voice;telephony;phone;aspnet</PackageTags> | ||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
<PackageProjectUrl>https://github.com/twilio-labs/twilio-aspnet</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/twilio-labs/twilio-aspnet.git</RepositoryUrl> | ||
<PackageIconUrl>https://s3.amazonaws.com/com.twilio.prod.twilio-docs/images/twilio-icon-64x64.png</PackageIconUrl> | ||
<PackageIcon>icon.png</PackageIcon> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(CI)' == 'true'"> | ||
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="System" /> | ||
<Reference Include="System.ComponentModel.Composition" /> | ||
<Reference Include="System.Configuration"> | ||
<HintPath>..\..\..\..\..\..\..\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.7.1\System.Configuration.dll</HintPath> | ||
</Reference> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.IO.Compression" /> | ||
<Reference Include="System.Net" /> | ||
<Reference Include="System.Numerics" /> | ||
<Reference Include="System.Web" /> | ||
<Reference Include="System.Xml.Linq" /> | ||
<Reference Include="System.Data.DataSetExtensions" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
<Reference Include="System.Data" /> | ||
<Reference Include="System.Net.Http" /> | ||
<Reference Include="System.Xml" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="app.config" /> | ||
<None Include="..\..\icon.png" Pack="true" PackagePath="\" /> | ||
<None Include="..\..\README.md" Pack="true" PackagePath="\" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Twilio" Version="6.2.0" /> | ||
<PackageReference Include="Twilio.AspNet.Common" Version="0.0.0-alpha" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.AspNet.Mvc" Version="5.2.7" /> | ||
<PackageReference Include="NuGet.Build.Tasks.Pack" Version="6.1.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> | ||
<_Parameter1>Twilio.AspNet.Mvc.UnitTests</_Parameter1> | ||
</AssemblyAttribute> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<OutputType>Library</OutputType> | ||
<TargetFramework>net462</TargetFramework> | ||
<Version>0.0.0-alpha</Version> | ||
<PackageId>Twilio.AspNet.Mvc</PackageId> | ||
<PackageVersion>0.0.0-alpha</PackageVersion> | ||
<Authors>Twilio Labs</Authors> | ||
<Description>Twilio helper library for ASP.NET MVC on .NET Framework.</Description> | ||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> | ||
<PackageReleaseNotes>Refer to the changelog at https://github.com/twilio-labs/twilio-aspnet/blob/main/CHANGELOG.md</PackageReleaseNotes> | ||
<Copyright>Copyright 2022 (c) Twilio, Inc. All rights reserved.</Copyright> | ||
<PackageTags>twilio;twiml;sms;voice;telephony;phone;aspnet</PackageTags> | ||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
<PackageProjectUrl>https://github.com/twilio-labs/twilio-aspnet</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/twilio-labs/twilio-aspnet.git</RepositoryUrl> | ||
<PackageIconUrl>https://s3.amazonaws.com/com.twilio.prod.twilio-docs/images/twilio-icon-64x64.png</PackageIconUrl> | ||
<PackageIcon>icon.png</PackageIcon> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(CI)' == 'true'"> | ||
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="System"/> | ||
<Reference Include="System.ComponentModel.Composition"/> | ||
<Reference Include="System.Configuration"> | ||
<HintPath>..\..\..\..\..\..\..\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.7.1\System.Configuration.dll</HintPath> | ||
</Reference> | ||
<Reference Include="System.Core"/> | ||
<Reference Include="System.IO.Compression"/> | ||
<Reference Include="System.Net"/> | ||
<Reference Include="System.Numerics"/> | ||
<Reference Include="System.Web"/> | ||
<Reference Include="System.Xml.Linq"/> | ||
<Reference Include="System.Data.DataSetExtensions"/> | ||
<Reference Include="Microsoft.CSharp"/> | ||
<Reference Include="System.Data"/> | ||
<Reference Include="System.Net.Http"/> | ||
<Reference Include="System.Xml"/> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="..\..\icon.png" Pack="true" PackagePath="\"/> | ||
<None Include="..\..\README.md" Pack="true" PackagePath="\"/> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Twilio" Version="6.2.2"/> | ||
<PackageReference Include="Twilio.AspNet.Common" Version="0.0.0-alpha"/> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.AspNet.Mvc" Version="5.2.9"/> | ||
<PackageReference Include="NuGet.Build.Tasks.Pack" Version="6.4.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> | ||
<_Parameter1>Twilio.AspNet.Mvc.UnitTests</_Parameter1> | ||
</AssemblyAttribute> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
using System.Web; | ||
using System.Web.Mvc; | ||
using System.Web.Mvc; | ||
|
||
namespace AspNetFramework | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.