- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我想对 csproj 文件进行一些路径更改以配置源代码管理。我没有手动完成,而是想遍历 csproj 文件并在每个 csproj 中使用 Linq-to-Xml 根据需要更改构建和引用路径。
所以我环顾四周,目前正在尝试使用:
public void Read(string fileName)
{
XDocument doc = XDocument.Load(fileName);
foreach (XElement el in doc.Root.Elements())
{
Console.WriteLine("{0} {1}", el.Name, el.Attribute("id").Value);
Console.WriteLine(" Attributes:");
foreach (XAttribute attr in el.Attributes())
Console.WriteLine(" {0}", attr);
Console.WriteLine(" Elements:");
foreach (XElement element in el.Elements())
Console.WriteLine(" {0}: {1}", element.Name, element.Value);
}
}
根据这个 SO 问题的公认答案 xml-parsing-read-a-simple-xml-file-and-retrieve-values .然而当行
foreach (XElement el in doc.Root.Elements())
已处理 我在调用 Elements 时收到空引用错误。我也试过调用节点、后代等,但它们都是空的。医生。 doc.Root 确实返回了 proj 文件中的所有内容(顶部的命名空间行除外),所以有些东西我只是没有正确地走它。
那我做错了什么?我希望 Elements 返回一组 XML 片段,我可以遍历或过滤以提取我想要的片段,即
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
更新:
所以这是一个 csproj 示例:
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{2CCAB46D-7A7C-4C65-B6D2-DC2D4049FCD9}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Basd.Core</RootNamespace>
<AssemblyName>Basd.Core</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile>
</TargetFrameworkProfile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\Basd.Bin\AnyCPU\Release\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>AnyCPU</PlatformTarget>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\Basd.Bin\AnyCPU\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>AnyCPU</PlatformTarget>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<PlatformTarget>x86</PlatformTarget>
<OutputPath>..\..\Basd.Bin\x86\Debug\</OutputPath>
<DebugType>full</DebugType>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<PlatformTarget>AnyCPU</PlatformTarget>
<OutputPath>..\..\Basd.Bin\AnyCPU\Release\</OutputPath>
<DefineConstants>
</DefineConstants>
<DebugType>pdbonly</DebugType>
<DebugSymbols>true</DebugSymbols>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.VisualBasic" />
<Reference Include="System" />
<Reference Include="System.Configuration" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Activation\ActivationExtensions.cs" />
<Compile Include="Activation\ActivationMetaDataList.cs" />
<Compile Include="Activation\ActivationProviderFactory.cs" />
<Compile Include="Activation\ActivationMetaDataConfigurationProvider.cs" />
<Compile Include="Activation\ActivationMetaDataConfigurationProviderSection.cs" />
<Compile Include="Activation\ActivationMetaDataProvider.cs" />
<Compile Include="Activation\IActivationMetaData.cs" />
<Compile Include="Activation\ActivationMetaData.cs" />
<Compile Include="Activation\IActivationMetaDataProvider.cs" />
<Compile Include="Collections\DomainList.cs" />
<Compile Include="DateTime\GenerationDateRange.cs" />
<Compile Include="DateTime\DateBlitterExtensions.cs" />
<Compile Include="Dto\DTOStub.generic.cs" />
<Compile Include="Dto\Tabulation.cs" />
<Compile Include="Dto\TabulatedItem.cs" />
<Compile Include="Dto\DTOStub.cs" />
<Compile Include="Environment\EnvironmentContext.cs" />
<Compile Include="Events\Delegates.cs" />
<Compile Include="Activation\ActivationHelper.cs" />
<Compile Include="Helpers\ObjectScrubber.cs" />
<Compile Include="Helpers\SmtpHelper.cs" />
<Compile Include="Interfaces\INameHolder.cs" />
<Compile Include="Interfaces\IFrame.cs" />
<Compile Include="Events\FrameEventArgs.cs" />
<Compile Include="Events\PayloadedEventArgs.cs" />
<Compile Include="Helpers\DateHelper.cs" />
<Compile Include="Helpers\EnumerableDataSources.cs" />
<Compile Include="Helpers\EnumHelper.cs" />
<Compile Include="Helpers\StringsHelper.cs" />
<Compile Include="Interfaces\IIndexable.cs" />
<Compile Include="Interfaces\INameable.cs" />
<Compile Include="Collections\NamedList.cs" />
<Compile Include="Interfaces\IText.cs" />
<Compile Include="Events\KeyChangedEventArgs.cs" />
<Compile Include="DateTime\DateRange.cs" />
<Compile Include="DateTime\EntityDateRange.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="DateTime\IMinimumBoundedDateRange.cs" />
<Compile Include="DateTime\IDateRange.cs" />
<Compile Include="Enumerations.cs" />
<Compile Include="DateTime\IEntityDateRange.cs" />
<Compile Include="Interfaces\IUserNotifier.cs" />
<Compile Include="Collections\IXtendedEnumerable.cs" />
<Compile Include="Membership.cs" />
<Compile Include="DateTime\MinimumBoundedDateRange.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="SeriesCube.cs" />
<Compile Include="Collections\XList.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="Compression\" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
从设置了断点的中间窗口
foreach (XElement el in doc.Root.Elements())
?doc.Root.ToString(); "<Project ToolsVersion=\"4.0\" DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/msbuild/2003\">\r\n <PropertyGroup>\r\n <Configuration Condition=\" '$(Configuration)'
== '' \">Debug</Configuration>\r\n <Platform Condition=\" '$(Platform)' == '' \">AnyCPU</Platform>\r\n <ProductVersion>8.0.30703</ProductVersion>\r\n <SchemaVersion>2.0</SchemaVersion>\r\n <ProjectGuid>{2CCAB46D-7A7C-4C65-B6D2-DC2D4049FCD9}</ProjectGuid>\r\n <OutputType>Library</OutputType>\r\n <AppDesignerFolder>Properties</AppDesignerFolder>\r\n <RootNamespace>Basd.Core</RootNamespace>\r\n <AssemblyName>Basd.Core</AssemblyName>\r\n <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>\r\n <FileAlignment>512</FileAlignment>\r\n <TargetFrameworkProfile></TargetFrameworkProfile>\r\n </PropertyGroup>\r\n <PropertyGroup Condition=\" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' \">\r\n <DebugSymbols>true</DebugSymbols>\r\n <DebugType>full</DebugType>\r\n <Optimize>false</Optim ize>\r\n <OutputPath>..\\..\\Basd.Bin\\AnyCPU\\Release\\</OutputPath>\r\n <DefineConstants>DEBUG;TRACE</DefineConstants>\r\n <ErrorReport>prompt</ErrorReport>\r\n <WarningLevel>4</WarningLevel>\r\n <PlatformTarget>AnyCPU</PlatformTarget>\r\n <Prefer32Bit>false</Prefer32Bit>\r\n </PropertyGroup>\r\n <PropertyGroup Condition=\" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' \">\r\n <DebugType>pdbonly</DebugType>\r\n <Optimize>true</Optimize>\r\n <OutputPath>..\\..\\Basd.Bin\\AnyCPU\\Release\\</OutputPath>\r\n <DefineConstants>TRACE</DefineConstants>\r\n <ErrorReport>prompt</ErrorReport>\r\n <WarningLevel>4</WarningLevel>\r\n <PlatformTarget>AnyCPU</PlatformTarget>\r\n <Prefer32Bit>false</Prefer32Bit>\r\n </PropertyGroup>\r\n <PropertyGroup Condition=\"'$(Configuration)|$(Platform)' == 'Debug|x86'\">\r\n <PlatformTarget>x86</PlatformTarget>\r\n <OutputPath>..\\..\\Basd.Bin\\x86\\Debug\\</OutputPath>\r\n <DebugType>full</DebugType>\r\n <Prefer32Bit>fals e</Prefer32Bit>\r\n </PropertyGroup>\r\n <PropertyGroup Condition=\"'$(Configuration)|$(Platform)' == 'Release|x86'\">\r\n <PlatformTarget>AnyCPU</PlatformTarget>\r\n <OutputPath>..\\..\\Basd.Bin\\AnyCPU\\Release\\</OutputPath>\r\n <DefineConstants></DefineConstants>\r\n <DebugType>pdbonly</DebugType>\r\n <DebugSymbols>true</DebugSymbols>\r\n <Prefer32Bit>false</Prefer32Bit>\r\n </PropertyGroup>\r\n <ItemGroup>\r\n <Reference Include=\"Microsoft.VisualBasic\" />\r\n <Reference Include=\"System\" />\r\n <Reference Include=\"System.Configuration\" />\r\n <Reference Include=\"System.Core\" />\r\n <Reference Include=\"System.Xml.Linq\" />\r\n <Reference Include=\"System.Data.DataSetExtensions\" />\r\n <Reference Include=\"Microsoft.CSharp\" />\r\n <Reference Include=\"System.Data\" />\r\n <Reference Include=\"System.Xml\" />\r\n </ItemGroup>\r\n <ItemGroup>\r\n <Compile Include=\"Activation\\ActivationExtensions.cs\" />\r\n <Compile Include=\"Activation\\Act ivationMetaDataList.cs\" />\r\n <Compile Include=\"Activation\\ActivationProviderFactory.cs\" />\r\n <Compile Include=\"Activation\\ActivationMetaDataConfigurationProvider.cs\" />\r\n <Compile Include=\"Activation\\ActivationMetaDataConfigurationProviderSection.cs\" />\r\n <Compile Include=\"Activation\\ActivationMetaDataProvider.cs\" />\r\n <Compile Include=\"Activation\\IActivationMetaData.cs\" />\r\n <Compile Include=\"Activation\\ActivationMetaData.cs\" />\r\n <Compile Include=\"Activation\\IActivationMetaDataProvider.cs\" />\r\n <Compile Include=\"Collections\\DomainList.cs\" />\r\n <Compile Include=\"DateTime\\GenerationDateRange.cs\" />\r\n <Compile Include=\"DateTime\\DateBlitterExtensions.cs\" />\r\n <Compile Include=\"Dto\\DTOStub.generic.cs\" />\r\n <Compile Include=\"Dto\\Tabulation.cs\" />\r\n <Compile Include=\"Dto\\TabulatedItem.cs\" />\r\n <Compile Include=\"Dto\\DTOStub.cs\" />\r\n <Compile Include=\"Environment\\EnvironmentContext.cs\" />\r\n <C ompile Include=\"Events\\Delegates.cs\" />\r\n <Compile Include=\"Activation\\ActivationHelper.cs\" />\r\n <Compile Include=\"Helpers\\ObjectScrubber.cs\" />\r\n <Compile Include=\"Helpers\\SmtpHelper.cs\" />\r\n <Compile Include=\"Interfaces\\INameHolder.cs\" />\r\n <Compile Include=\"Interfaces\\IFrame.cs\" />\r\n <Compile Include=\"Events\\FrameEventArgs.cs\" />\r\n <Compile Include=\"Events\\PayloadedEventArgs.cs\" />\r\n <Compile Include=\"Helpers\\DateHelper.cs\" />\r\n <Compile Include=\"Helpers\\EnumerableDataSources.cs\" />\r\n <Compile Include=\"Helpers\\EnumHelper.cs\" />\r\n <Compile Include=\"Helpers\\StringsHelper.cs\" />\r\n <Compile Include=\"Interfaces\\IIndexable.cs\" />\r\n <Compile Include=\"Interfaces\\INameable.cs\" />\r\n <Compile Include=\"Collections\\NamedList.cs\" />\r\n <Compile Include=\"Interfaces\\IText.cs\" />\r\n <Compile Include=\"Events\\KeyChangedEventArgs.cs\" />\r\n <Compile Include=\"DateTime\\DateRange.cs\" />\r\n <Co mpile Include=\"DateTime\\EntityDateRange.cs\">\r\n <SubType>Code</SubType>\r\n </Compile>\r\n <Compile Include=\"DateTime\\IMinimumBoundedDateRange.cs\" />\r\n <Compile Include=\"DateTime\\IDateRange.cs\" />\r\n <Compile Include=\"Enumerations.cs\" />\r\n <Compile Include=\"DateTime\\IEntityDateRange.cs\" />\r\n <Compile Include=\"Interfaces\\IUserNotifier.cs\" />\r\n <Compile Include=\"Collections\\IXtendedEnumerable.cs\" />\r\n <Compile Include=\"Membership.cs\" />\r\n <Compile Include=\"DateTime\\MinimumBoundedDateRange.cs\" />\r\n <Compile Include=\"Properties\\AssemblyInfo.cs\" />\r\n <Compile Include=\"Properties\\Resources.Designer.cs\">\r\n <AutoGen>True</AutoGen>\r\n <DesignTime>True</DesignTime>\r\n <DependentUpon>Resources.resx</DependentUpon>\r\n </Compile>\r\n <Compile Include=\"SeriesCube.cs\" />\r\n <Compile Include=\"Collections\\XList.cs\" />\r\n </ItemGroup>\r\n <ItemGroup>\r\n <Folder Include=\"Compression\\\" />\r\n </Item Group>\r\n <ItemGroup>\r\n <EmbeddedResource Include=\"Properties\\Resources.resx\">\r\n <Generator>ResXFileCodeGenerator</Generator>\r\n <LastGenOutput>Resources.Designer.cs</LastGenOutput>\r\n </EmbeddedResource>\r\n </ItemGroup>\r\n <Import Project=\"$(MSBuildToolsPath)\\Microsoft.CSharp.targets\" />\r\n <!-- To modify your build process, add your task inside one of the targets below and uncomment it. \r\n Other similar extension points exist, see Microsoft.Common.targets.\r\n <Target Name=\"BeforeBuild\">\r\n </Target>\r\n <Target Name=\"AfterBuild\">\r\n </Target>\r\n -->\r\n</Project>"
?doc.Root.Name; {{http://schemas.microsoft.com/developer/msbuild/2003}Project}
hashCode: 541551665
localName: "Project"
LocalName: "Project"
Namespace: {http://schemas.microsoft.com/developer/msbuild/2003}
NamespaceName: "http://schemas.microsoft.com/developer/msbuild/2003"
ns: {http://schemas.microsoft.com/developer/msbuild/2003}
?doc.Root.Descendants(); {System.Xml.Linq.XContainer.GetDescendants}
name: null
self: false
System.Collections.Generic.IEnumerator<System.Xml.Linq.XElement>.Current: null
System.Collections.IEnumerator.Current: null ?doc.Root.Nodes(); {System.Xml.Linq.XContainer.Nodes}
System.Collections.Generic.IEnumerator<System.Xml.Linq.XNode>.Current: null
System.Collections.IEnumerator.Current: null ?doc.Root.Attributes();
最佳答案
您在这一行中遇到异常:
Console.WriteLine("{0} {1}", el.Name, el.Attribute("id").Value);
因为至少根的第一个子元素,在您的示例中它是 PropertyGroup
不包含 id
属性。
我可以建议你将这一行重写为
Console.WriteLine("{0} {1}", el.Name, (string)el.Attribute("id"));
在这种情况下,您的代码不会抛出任何异常。
关于c# - 如何使用XDocument读取csproj文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18951821/
我遇到以下问题。我想读取一个包含数百万行和数百列的大型 csv。我想向下转换列的数据类型。我的方法是读取 csv,然后使用 pd.to_numeric() 对其进行向下转换。我不知道列数及其类型。在读
目前,我从 SQL server (2008) 数据库获取数据。 cyurrent的方法是使用DataTable,然后将其传递并使用。 if (parameters != null)
我有以下问题。我有一个巨大的 csv 文件,想用多处理加载它。对于一个包含 500000 行和 130 列不同数据类型的示例文件,Pandas 需要 19 秒。我试过 dask 因为我想多处理阅读。但
是否有关于用于序列化各种 MFC 数据结构的二进制格式的明确文档?我已经能够在十六进制编辑器中查看我自己的一些类,并使用 Java 的 ByteBuffer 类读取它们(使用自动字节顺序转换等)。 但
我正在使用 Selenium 进行测试,我们用 HTML 文件编写测试用例,并用它们制作测试套件,我们的要求是编写足够健壮的测试用例,以根据测试环境改变自身。 为此,我不希望在 HTML 脚本本身中包
我需要一个 JavaScript 代码来读取存储为 .txt 文件的字典(或者也可以保存为任何其他类型的文件。它也可以在线获得)并将其内容存储在一个变量中。我不能找到一种让 JavaScript 像
我正在尝试遍历包含 SSH 登录和其他日志的日志文本文件。 程序正在返回 SSH 登录的总数。 我的解决方案确实有效,但似乎有点慢(在 200mo 文件上大约需要 3.5 秒)。我想知道是否有任何方法
我正在将大量数据从一个电子表格复制到工作簿中的其他 160 个电子表格。目前,Excel (2013) 遇到错误,因为它没有足够的资源来完成操作。 我的目标是将工作表 4 中 V13:XI1150 范
我正在尝试读取一个有 1147 行的文本文件。下面的代码仅读取第 1050-1147 行。我的目标是读取整个文件并提取位于不同行的特定值以在脚本中使用。一个示例是包含“BlockList: 2”的行中
我正在为游戏编写解释器。用户将其移动输入解释器,程序执行该移动。 现在我想为每个决定实现一个时间限制。玩家不应该能够思考超过 30 秒来写一个移动并按下回车。 call_with_time_limit
以this file例如,我正在尝试读取 data.frame 中的数据。来自 the doc (pdf 文件,表 1),它遵循一些 fortran 约定。我尝试了以下但收效甚微: dir 0' 将
我正在使用 R 阅读 Outlook 附件。我的引用在这里:Download attachment from an outlook email using R 这是我的电子邮件的截图: 这每天都会发送
我不会从表格中读取行来将主题放在列表中 php脚本 $url_obj='http://'.$host.':8069/xmlrpc/object'; $sock=new xmlrpc_client($u
我有一个这样的 csv 文件: id,name,value 1,peter,5 2,peter\,paul,3 我如何读取此文件并告诉 R "\," 不表示新列,仅表示 ","。 我必须添加该文件
我正在尝试读取 ~/Library/Preferences/com.apple.mail.plist (在 Snow Leopard 上)以获取电子邮件地址和其他信息以进入“关于”对话框。我使用以下代
This question already has answers here: How do I use floating-point division in bash? (19个回答) 5个月前关闭
本练习的目标是读取输入文件并将其存储到表中,然后验证输入中的某些字段并输出任何错误记录。我需要读取并存储每个策略组,以便表中一次仅存储 5 条记录,而不是整个文件。 所以我需要读取一个包含 5 条记录
据我了解,LWT 插入始终以 SERIAL 一致性级别完成。如果为 true,这是否意味着读取作为 LWT 插入的行可以安全地以 ANY 的一致性级别读取? 换句话说,我假设 LWT 插入是完全一致的
我看到很多很多通过java脚本读取cookie的函数,但我只想在变量中使用它一次,我是JS新手。 这是我的代码 var TheNumber = (Math.random() + '') * 10000
我正在使用 asp.net 和 C#。我在服务器上部署了一个应用程序[已发布],现在我想查看该网站的代码,据我所知,我可以阅读程序集来查看代码。 请告诉我如何实现它。 提前致谢。 最佳答案 您可以使用
我是一名优秀的程序员,十分优秀!