如何在批处理文件中并行构建两个Visual Studio,并汇总报告所有构建失败

时间:2019-05-16 12:09:41

标签: c# batch-file msbuild

对于任何代码更改,我们都有很多解决方案可以构建。所有人都是独立的。顺序运行它们非常耗时。我已经在批处理文件中运行它们,但想同时构建所有解决方案。请提出建议。这是更改:

  export default class HeaderStyle extends Component {
     render() {
        return (
            <View>
                <Header >
                    <View style={{
                        width: width, height: hp('12%'),
                        flexDirection: 'row', backgroundColor: '#141414'
                    }} >

                        <Left>
                            <Image style={styles.logo}
                                source={require('../assets/images/1x/logo.png')}>
                            </Image>
                        </Left>

                        <View style={{ marginLeft: 280, marginTop: 20 }}>
                            <Text style={{ color: 'white', fontSize: 35, fontWeight: 'bold' }}>
                                Should be Dynamic Screen Name</Text></View>

                        <Right>
                            <TouchableOpacity onPress={this.ShowHideComponent2}>
                                <Image style={styles.imgsearch} source={require('../assets/test/a.png')}>
                                </Image>

                            </TouchableOpacity>

                        </Right>

                    </View>

                </Header>
                {this.showAssests()}
            </View>
        );
     }
  }

0 个答案:

没有答案